:root {
  --black: #11100d;
  --black-soft: #181612;
  --ink: #181611;
  --ivory: #f7f2e8;
  --ivory-deep: #ede3d1;
  --paper: #fbf8f1;
  --gold: #c6aa6d;
  --gold-deep: #8c764d;
  --line: rgba(24, 22, 17, 0.16);
  --white-line: rgba(247, 242, 232, 0.18);
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --serif-display: Didot, "Bodoni 72", "Bodoni 72 Display", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

::selection {
  color: var(--black);
  background: var(--gold);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 3.8vw, 48px) var(--gutter);
  color: var(--ivory);
  mix-blend-mode: normal;
}

.brand,
.nav-links a {
  font-size: clamp(0.72rem, 0.82vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand {
  justify-self: start;
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(34px, 3.4vw, 54px);
  color: rgba(247, 242, 232, 0.78);
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
  background: #030302;
}

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

.hero-media img {
  position: absolute;
  top: -12svh;
  left: 50%;
  width: auto;
  height: min(112svh, 1080px);
  max-width: none;
  opacity: 1;
  object-fit: contain;
  transform: translateX(-50%);
  filter: saturate(0.86) contrast(1.18) brightness(0.96);
  mask-image: radial-gradient(ellipse 58% 76% at 50% 48%, #000 50%, rgba(0, 0, 0, 0.86) 64%, transparent 88%);
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(ellipse 26% 48% at 50% 36%, rgba(247, 242, 232, 0.06), transparent 62%),
    linear-gradient(90deg, rgba(3, 3, 2, 0.96) 0%, rgba(3, 3, 2, 0.1) 42%, rgba(3, 3, 2, 0.16) 58%, rgba(3, 3, 2, 0.97) 100%),
    linear-gradient(180deg, rgba(3, 3, 2, 0.18) 0%, rgba(3, 3, 2, 0) 43%, rgba(3, 3, 2, 0.92) 100%);
}

.hero-frame {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding: clamp(104px, 13vh, 150px) var(--gutter) clamp(34px, 5vh, 56px);
}

.hero-copy {
  align-self: end;
  width: min(1220px, 100%);
  min-width: 0;
}

.hero-kicker,
.section-label {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(5rem, 8.35vw, 10.05rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 10px 44px rgba(0, 0, 0, 0.58);
  white-space: nowrap;
}

.hero-line {
  width: min(820px, 100%);
  margin: clamp(10px, 1.3vh, 14px) 0 0;
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: clamp(1.28rem, 1.42vw, 1.72rem);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3.2vh, 34px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid rgba(247, 242, 232, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.button.secondary {
  color: var(--ivory);
}

.button.secondary:hover {
  border-color: var(--ivory);
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(46px, 5.1vh, 58px);
  min-width: 0;
}

.proof-strip {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(34px, 5.2vw, 84px);
  width: min(820px, 100%);
  min-height: 34px;
  margin: 0;
  padding: 0;
}

.proof-strip::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 78px;
  height: 2px;
  background: var(--gold);
}

.proof-strip div {
  min-width: 0;
  padding: 0;
  background: transparent;
}

.proof-strip div + div {
  position: relative;
}

.proof-strip div + div::before {
  content: "";
  position: absolute;
  left: calc(clamp(34px, 5.2vw, 84px) / -2);
  top: 50%;
  width: 1px;
  height: 34px;
  background: var(--gold);
  transform: translateY(-50%);
}

.proof-strip dt {
  margin: 0;
  color: rgba(247, 242, 232, 0.88);
  font-size: clamp(0.88rem, 0.98vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.proof-strip dd {
  display: none;
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 162px;
  height: 34px;
  padding: 0 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-whatsapp img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.hero-whatsapp:hover {
  background: var(--gold);
  color: var(--black);
}

.section {
  padding: clamp(82px, 11vw, 148px) var(--gutter);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro,
.about {
  background: var(--paper);
}

.intro-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(3rem, 4.85vw, 5.25rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(1.75rem, 2vw, 2.32rem);
  font-weight: 400;
  line-height: 1.02;
}

.intro h2,
.section-heading h2,
.feature-copy h2,
.about-copy h2,
.contact h2 {
  font-size: clamp(3rem, 4.85vw, 5.25rem);
}

.intro-copy {
  color: rgba(24, 22, 17, 0.76);
  font-size: clamp(1.02rem, 1.34vw, 1.2rem);
}

.intro-copy p,
.about-copy p:not(.section-label),
.feature-copy p:not(.section-label) {
  margin: 0;
}

.intro-copy p + p,
.about-copy p:not(.section-label) + p,
.feature-copy p:not(.section-label) + p {
  margin-top: 18px;
}

.services {
  background: var(--ivory);
}

.section-heading {
  width: 100%;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-panel {
  min-height: 318px;
  display: grid;
  grid-template-rows: 22px 76px auto;
  align-content: start;
  gap: 24px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.34);
}

.service-panel span {
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-panel p {
  margin: 0;
  color: rgba(24, 22, 17, 0.68);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 820px;
  color: var(--ivory);
  background: var(--black);
}

.feature-image {
  min-height: 560px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: grayscale(1) contrast(1.08);
}

.feature-copy {
  align-self: center;
  padding: clamp(70px, 8.8vw, 124px) var(--gutter);
}

.feature-copy h2 {
  max-width: 720px;
}

.feature-copy > p:not(.section-label) {
  max-width: 570px;
  margin-top: 28px;
  color: rgba(247, 242, 232, 0.74);
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
}

.feature-list {
  display: grid;
  grid-template-rows: repeat(4, auto);
  row-gap: 24px;
  width: min(560px, 100%);
  margin-top: 48px;
  padding-block: 24px;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.feature-list p {
  position: relative;
  padding: 0;
  color: rgba(247, 242, 232, 0.86);
}

.feature-list p:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: var(--white-line);
}

.portrait-stack {
  position: relative;
  min-height: clamp(520px, 60vw, 720px);
}

.portrait-main,
.portrait-secondary {
  position: absolute;
  object-fit: cover;
  background: var(--black);
}

.portrait-main {
  top: 0;
  left: 0;
  width: min(72%, 430px);
  aspect-ratio: 0.72;
  object-position: 50% 28%;
}

.portrait-secondary {
  right: 0;
  bottom: 0;
  width: min(46%, 290px);
  aspect-ratio: 0.72;
  object-position: 50% 26%;
  border: 10px solid var(--paper);
}

.about-copy {
  align-self: center;
}

.about-copy p:not(.section-label) {
  max-width: 590px;
  color: rgba(24, 22, 17, 0.72);
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
}

.about-copy h2 {
  margin-bottom: 28px;
}

.contact {
  color: var(--ivory);
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.contact-actions {
  display: grid;
  gap: 0;
}

.contact-link {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 64px;
  padding: 0 0;
  border-bottom: 1px solid var(--white-line);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-link:first-child {
  border-top: 1px solid var(--white-line);
}

.contact-link:hover {
  color: var(--gold);
  border-color: rgba(198, 170, 109, 0.48);
}

.contact-link span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-link strong {
  min-width: 0;
  color: var(--ivory);
  font-family: inherit;
  font-size: clamp(0.96rem, 1.08vw, 1.15rem);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  overflow-wrap: normal;
}

.contact-link:hover strong {
  color: var(--gold);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px var(--gutter);
  color: rgba(247, 242, 232, 0.7);
  background: var(--black);
  font-size: 0.82rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-media img {
    top: 7svh;
    left: 50%;
    height: min(72svh, 680px);
    transform: translateX(-50%);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 16, 13, 0.94), rgba(17, 16, 13, 0.48) 50%, rgba(17, 16, 13, 0.94)),
      linear-gradient(180deg, rgba(17, 16, 13, 0.12), rgba(17, 16, 13, 0.26) 42%, rgba(17, 16, 13, 0.95));
  }

  .proof-strip {
    gap: 28px;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-whatsapp {
    justify-self: start;
  }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 240px;
    grid-template-rows: auto auto auto;
  }

  .feature-band {
    min-height: 0;
  }

  .feature-image {
    min-height: 540px;
  }

  .feature-copy {
    padding-top: 78px;
    padding-bottom: 86px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand,
  .nav-links a {
    font-size: 0.66rem;
  }

  .hero-media img {
    top: 7svh;
    left: 50%;
    height: 40svh;
    transform: translateX(-50%);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(17, 16, 13, 0.08) 0%, rgba(17, 16, 13, 0.18) 28%, rgba(17, 16, 13, 0.84) 63%, rgba(17, 16, 13, 0.98) 100%),
      linear-gradient(90deg, rgba(17, 16, 13, 0.62), rgba(17, 16, 13, 0.24), rgba(17, 16, 13, 0.64));
  }

  .hero-frame {
    grid-template-rows: minmax(250px, 0.72fr) auto auto;
    padding-top: 88px;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.6rem);
    line-height: 0.9;
    white-space: normal;
  }

  .hero-line {
    font-size: 1.06rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(360px, 100%);
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .proof-strip div {
    padding: 0;
  }

  .proof-strip div + div::before {
    display: none;
  }

  .proof-strip dt {
    font-size: 0.82rem;
    letter-spacing: 0.24em;
  }

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

  .section {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  h2 {
    font-size: clamp(2.38rem, 13vw, 3.8rem);
  }

  .feature-image {
    min-height: 430px;
  }

  .portrait-stack {
    min-height: auto;
  }

  .portrait-main {
    position: relative;
    width: min(78%, 320px);
  }

  .portrait-secondary {
    display: none;
  }

  .contact-link {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-link strong {
    font-size: clamp(0.95rem, 4.4vw, 1.12rem);
    white-space: normal;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .hero-kicker,
  .section-label {
    font-size: 0.67rem;
  }

  .proof-strip dd {
    font-size: 0.78rem;
  }
}
