:root {
  --ink: #171412;
  --muted: #6f6760;
  --paper: #fbfaf7;
  --soft: #f3eee7;
  --taupe: #d8cabd;
  --gold: #b18a4d;
  --wine: #6f151b;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(30, 22, 15, 0.14);
  --shadow-strong: 0 30px 90px rgba(22, 14, 8, 0.22);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(23, 20, 18, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.menu-open {
  background: rgba(251, 250, 247, 0.98);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(23, 20, 18, 0.08);
}

.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: 0;
  appearance: none;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-links a,
.header-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.header-cta {
  position: relative;
  z-index: 2;
  border: 1px solid currentColor;
  padding: 10px 18px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  display: grid;
  place-items: center;
  padding: 130px 24px 74px;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.04);
  animation: heroZoom 1400ms ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.72) 0%, rgba(15, 12, 10, 0.47) 46%, rgba(15, 12, 10, 0.22) 100%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.34), rgba(10, 8, 7, 0.64));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 9vw, 7.6rem);
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.4vw, 4.4rem);
  max-width: 100%;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.1;
}

.hero-subtitle {
  width: min(780px, 100%);
  margin: 0 auto 18px;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
}

.slogan {
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  color: #f0dfc1;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  min-height: 46px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 20, 18, 0.14);
}

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.button-light {
  border-color: var(--taupe);
  color: var(--ink);
}

.button-whatsapp {
  background: #1f7a52;
  color: var(--white);
}

.hero-note {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 4vw, 56px);
  bottom: 28px;
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-note span + span::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.55);
}

.section {
  padding: clamp(78px, 10vw, 140px) 0;
}

.section[id] {
  scroll-margin-top: 84px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.split,
.included-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.image-panel {
  position: relative;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--taupe);
}

.image-panel img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 420ms ease, box-shadow 420ms ease;
}

.image-panel:hover img {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-strong);
}

.section-copy p,
.section-heading p,
.trust-card p,
.service-card p {
  color: var(--muted);
}

.section-copy p {
  font-size: 1.06rem;
}

.signature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.signature-row span {
  border-top: 1px solid var(--gold);
  padding-top: 10px;
  min-width: 120px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.services,
.why {
  background: var(--white);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: var(--paper);
  border: 1px solid rgba(177, 138, 77, 0.18);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(177, 138, 77, 0.45);
  box-shadow: 0 20px 44px rgba(23, 20, 18, 0.1);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card div {
  padding: 24px;
}

.feature-strip {
  position: relative;
  min-height: clamp(420px, 68vh, 720px);
  display: grid;
  place-items: center;
  color: var(--white);
}

.feature-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}

.feature-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 13, 9, 0.48);
}

.feature-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  text-align: center;
}

.feature-content p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 6.6vw, 5.3rem);
  line-height: 1;
}

.included {
  background: var(--soft);
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.included-list span {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.25;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.included-list span:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(23, 20, 18, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  margin: 0;
  background: var(--soft);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 28px;
  background: var(--paper);
  border-top: 2px solid var(--gold);
  box-shadow: 0 12px 36px rgba(23, 20, 18, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(23, 20, 18, 0.1);
}

.contact {
  padding-bottom: 80px;
  background: var(--ink);
  color: var(--white);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  padding: clamp(30px, 5vw, 62px);
  background: #211c18;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  display: grid;
  gap: 14px;
  font-style: normal;
}

.contact-details a,
.contact-details p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  overflow-wrap: anywhere;
}

.contact-details span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-actions {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

.contact .button-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.contact .button-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 4vw, 56px);
  background: #120f0d;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: 22px;
  bottom: 22px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #1f7a52;
  color: var(--white);
  box-shadow: 0 12px 34px rgba(20, 52, 36, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  animation: floatIn 620ms ease 400ms both;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #188357;
  box-shadow: 0 18px 40px rgba(20, 52, 36, 0.36);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    margin-right: auto;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(251, 250, 247, 0.98);
    color: var(--ink);
    box-shadow: 0 18px 50px rgba(23, 20, 18, 0.14);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(177, 138, 77, 0.14);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 9px 13px;
    font-size: 0.72rem;
    line-height: 1.1;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    place-items: end center;
    text-align: left;
    padding-inline: 20px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-note {
    display: none;
  }

  .split,
  .included-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(251, 250, 247, 0.96);
    color: var(--ink);
    box-shadow: 0 8px 24px rgba(23, 20, 18, 0.08);
    backdrop-filter: blur(14px);
  }

  .brand {
    flex: 0 0 auto;
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: none;
  }

  .header-cta {
    flex: 0 1 auto;
    max-width: 174px;
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    white-space: normal;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 100svh;
    place-items: center;
    padding: 104px 18px 92px;
  }

  .hero-media img {
    object-position: 52% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 10, 8, 0.32), rgba(12, 10, 8, 0.86));
  }

  h1,
  h2 {
    line-height: 1.02;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.58rem, 11.4vw, 3.05rem);
  }

  h2 {
    font-size: clamp(2.15rem, 9vw, 2.7rem);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .slogan {
    margin-bottom: 26px;
    font-size: 1.45rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    width: min(calc(100% - 28px), 1180px);
  }

  .image-panel::before {
    inset: 14px -10px -14px 10px;
  }

  .service-grid,
  .trust-grid,
  .included-list {
    grid-template-columns: 1fr;
  }

  .service-card div,
  .trust-card {
    padding: 24px 20px;
  }

  .service-card,
  .trust-card,
  .gallery-item {
    width: 100%;
  }
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    height: auto;
    aspect-ratio: 4 / 5;
    margin-bottom: 14px;
  }

  .gallery-item.tall {
    aspect-ratio: 3 / 4;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 14px;
    gap: 8px;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 98px 14px 84px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .header-cta {
    max-width: 150px;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(2.42rem, 10.6vw, 2.75rem);
  }

  .hero-subtitle {
    font-size: 0.94rem;
  }

  .hero-actions,
  .contact-actions {
    gap: 10px;
  }

  .button {
    padding-inline: 16px;
    font-size: 0.76rem;
  }

  .included-list span {
    min-height: 74px;
    padding: 18px;
    font-size: 1.16rem;
  }

  .contact-panel {
    padding: 26px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
