:root {
  --color-ink: #182027;
  --color-text: #25313a;
  --color-muted: #66717a;
  --color-background: #fbfaf7;
  --color-surface: #ffffff;
  --color-stone: #ece7df;
  --color-border: #ded7cc;
  --color-red: #be2026;
  --color-red-dark: #94181d;
  --color-gold: #c79a39;
  --color-green: #1f7a65;
  --color-link: #182027;
  --shadow-soft: 0 18px 44px rgba(24, 32, 39, 0.12);
  --container-width: 1160px;
  --header-height: 74px;
  --space-section: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(222, 215, 204, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  font-weight: 800;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

.brand-text {
  min-width: 0;
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text span {
  max-width: 150px;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  color: var(--color-ink);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.site-nav {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 16px 28px rgba(24, 32, 39, 0.08);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 10px 0;
  color: var(--color-ink);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a:hover {
  color: var(--color-red);
  text-decoration: none;
}

.section {
  padding: var(--space-section) 0;
  border-bottom: 1px solid rgba(222, 215, 204, 0.72);
}

.section:nth-of-type(odd):not(.hero-section) {
  background: #ffffff;
}

.hero-section {
  position: relative;
  min-height: min(720px, calc(100svh - var(--header-height) - 52px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 78px 0;
  color: #ffffff;
  background: #1f252b;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(18, 24, 30, 0.92), rgba(18, 24, 30, 0.64) 48%, rgba(18, 24, 30, 0.3)),
    var(--hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold), var(--color-green));
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(720px, 100%);
  display: grid;
  gap: 16px;
}

.section-header {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-kicker,
.eyebrow {
  margin: 0 0 8px;
  color: var(--color-red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  color: #f4c657;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.12;
}

.hero-section h1,
.hero-section p {
  color: #ffffff;
}

h1 {
  max-width: 780px;
  margin-bottom: 8px;
  font-size: clamp(2.35rem, 7vw, 4.9rem);
  font-weight: 900;
}

h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  font-weight: 850;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  font-weight: 800;
}

.lead {
  color: var(--color-muted);
  font-size: 1.06rem;
}

.hero-section .lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.2vw, 1.24rem);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

.grid {
  display: grid;
  gap: 16px;
}

.card,
.contact-card,
.about-copy {
  position: relative;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(24, 32, 39, 0.04);
}

.card::before,
.contact-card::before,
.about-copy::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18px;
  width: 54px;
  height: 3px;
  background: var(--color-red);
}

.card p:last-child,
.about-copy p:last-child {
  margin-bottom: 0;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--color-red-dark);
  background: #f8ece8;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 900;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: #ffffff;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 6px;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 14px 28px rgba(190, 32, 38, 0.22);
}

.button:hover {
  background: var(--color-red-dark);
  text-decoration: none;
}

.button.secondary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.backlink {
  color: var(--color-ink);
  background: #f4c657;
  border-color: #f4c657;
  box-shadow: 0 14px 28px rgba(244, 198, 87, 0.18);
}

.button.backlink:hover {
  color: #ffffff;
  background: var(--color-green);
  border-color: var(--color-green);
}

.button.ghost {
  margin-top: 18px;
  color: var(--color-ink);
  background: var(--color-stone);
  border-color: var(--color-border);
  box-shadow: none;
}

.button.ghost:hover {
  color: #ffffff;
  background: var(--color-ink);
}

.about-layout {
  display: grid;
  gap: 22px;
}

.about-copy {
  display: grid;
  align-content: start;
}

.about-copy p {
  color: var(--color-muted);
}

.about-side {
  display: grid;
  gap: 16px;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  color: var(--color-muted);
}

.meta-list a {
  color: var(--color-ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.meta-list strong {
  color: var(--color-ink);
}

.gallery-grid {
  display: grid;
  gap: 16px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(24, 32, 39, 0.05);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  min-height: 46px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 12px;
  color: var(--color-ink);
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 750;
}

.process-grid .card::before {
  background: var(--color-green);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.faq-item summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: var(--color-ink);
  cursor: pointer;
  font-weight: 850;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--color-muted);
}

.contact-layout {
  display: grid;
  gap: 22px;
}

.contact-card {
  display: grid;
  align-content: start;
}

.contact-list li {
  display: grid;
  gap: 3px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-list span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--color-ink);
  background: #fffdf9;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(190, 32, 38, 0.12);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.map-frame {
  width: 100%;
  min-height: 340px;
  background: var(--color-stone);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 42px 0 72px;
  color: #ffffff;
  background-color: #151b20;
  background-image:
    linear-gradient(120deg, rgba(14, 19, 24, 0.98), rgba(20, 28, 34, 0.9)),
    url("assets/footer-art.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(199, 154, 57, 0.24);
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold), var(--color-green));
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-items: start;
}

.footer-brand-panel {
  max-width: 760px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 64px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  color: #ffffff;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 900;
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-text {
  display: grid;
  gap: 3px;
}

.footer-logo-label,
.footer-eyebrow {
  margin: 0;
  color: rgba(244, 198, 87, 0.95);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-logo-text strong {
  color: #ffffff;
  font-size: 1.16rem;
  line-height: 1;
}

.site-footer h2,
.site-footer h3 {
  color: #ffffff;
}

.site-footer h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.75rem;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: rgba(244, 198, 87, 0.95);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  gap: 16px;
}

.footer-column {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  gap: 0;
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 750;
}

.footer-contact-list a,
.footer-contact-list strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.social-link {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  color: #ffffff;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 850;
  line-height: 1;
}

.social-link:hover {
  text-decoration: none;
}

.social-link--facebook {
  background: #1877f2;
}

.footer-credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-credit a {
  color: #ffffff;
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.fixed-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.fixed-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fixed-action:hover {
  text-decoration: none;
}

.fixed-action--phone,
.fixed-action--whatsapp {
  position: relative;
  z-index: 9999;
  width: 58px;
  height: 58px;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(24, 32, 39, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.fixed-action--phone {
  background: var(--color-ink);
}

.fixed-action--whatsapp {
  background: #25d366;
}

.fixed-action--phone:hover,
.fixed-action--whatsapp:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 30px rgba(24, 32, 39, 0.26);
}

.whatsapp-logo {
  width: 31px;
  height: 31px;
  display: block;
  fill: currentColor;
}

.phone-logo {
  width: 27px;
  height: 27px;
  display: block;
  fill: currentColor;
}

@media (max-width: 480px) {
  :root {
    --header-height: 68px;
    --space-section: 52px;
  }

  .container {
    width: min(100% - 24px, var(--container-width));
  }

  .brand-logo {
    width: 46px;
    height: 40px;
  }

  .brand-text span {
    max-width: 122px;
  }

  .hero-section {
    min-height: calc(100svh - var(--header-height) - 74px);
    padding: 58px 0 64px;
  }

  .button {
    width: 100%;
  }

  .hero-highlights li {
    width: 100%;
    justify-content: center;
  }

  .fixed-actions {
    right: 12px;
    bottom: 12px;
  }

  .fixed-action--phone,
  .fixed-action--whatsapp {
    width: 52px;
    height: 52px;
  }
}

@media (min-width: 720px) {
  :root {
    --space-section: 82px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0;
  }

  .grid.two,
  .contact-layout,
  .about-layout,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.three,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr 1.7fr;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 0.85fr 1.35fr 0.8fr;
    gap: 18px;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .hero-section {
    padding: 92px 0 98px;
  }

  .card,
  .contact-card,
  .about-copy {
    padding: 24px;
  }
}
