:root {
  --ink: #211b19;
  --paper: #f5f0ea;
  --wine: #b76e79;
  --sand: #d9c8ba;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav {
  height: 84px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 240, 234, 0.95);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}
.brand span {
  font-family: Georgia, serif;
  font-size: 24px;
  letter-spacing: -1px;
}
.brand small {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 8px;
}
nav {
  display: flex;
  gap: 34px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
nav a {
  transition: opacity 0.2s;
}
nav a:hover {
  opacity: 0.55;
}
.navCta {
  border-bottom: 1px solid;
  padding: 10px 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: #333;
}
.heroImage {
  position: absolute;
  inset: 0;
  background: url("images/IMG_7917.jpg") center 35% / cover no-repeat;
  transform: scale(1.01);
}
.heroShade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 12, 11, 0.72) 0%,
    rgba(18, 12, 11, 0.36) 50%,
    rgba(18, 12, 11, 0.05) 100%
  );
}
.heroContent {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 125px 10vw 70px;
  color: white;
}
.eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 30px;
}
.light {
  color: #eadfd6;
}
.hero h1,
.manifest h2,
.process h2,
.pricing h2,
.contact h2 {
  font:
    400 clamp(46px, 6vw, 92px)/0.98 Georgia,
    serif;
  letter-spacing: -0.045em;
  margin: 0;
}
.heroLine {
  font:
    italic 20px Georgia,
    serif;
  margin: 25px 0 42px;
  color: #f0e5dc;
}
.button {
  display: inline-flex;
  gap: 30px;
  justify-content: space-between;
  min-width: 260px;
  padding: 16px 2px;
  border-bottom: 1px solid;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.buttonLight {
  color: white;
}
.verticalNote {
  position: absolute;
  z-index: 2;
  right: 2.5vw;
  bottom: 42px;
  color: white;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.28em;
  opacity: 0.75;
}
.manifest {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 8vw;
  padding: 145px 9vw 160px;
}
.sectionNumber {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #756a65;
  margin: 12px 0;
}
.manifest h2,
.process h2,
.pricing h2 {
  font-size: clamp(40px, 5vw, 72px);
}
.manifest h2 em,
.process h2 em,
.pricing h2 em,
.contact h2 em {
  font-weight: 400;
  color: var(--wine);
}
.manifest div > p {
  max-width: 560px;
  font:
    17px/1.8 Georgia,
    serif;
  color: #5f5651;
  margin: 40px 0 30px;
}
.textLink {
  display: inline-flex;
  gap: 50px;
  padding-bottom: 9px;
  border-bottom: 1px solid;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.gallery {
  min-height: 950px;
  background: #201b1a;
  position: relative;
  overflow: hidden;
}
.photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
}
.photoOne {
  width: 38%;
  height: 72%;
  left: 7%;
  top: 10%;
}
.photoTwo {
  width: 25%;
  height: 48%;
  right: 7%;
  top: 7%;
}
.photoThree {
  width: 28%;
  height: 46%;
  right: 16%;
  bottom: -5%;
}
.photo img {
  transition: transform 0.8s ease;
}
.photo:hover img {
  transform: scale(1.025);
}
.galleryWords {
  color: #f4ede7;
  position: absolute;
  left: 41%;
  top: 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font:
    56px/0.9 Georgia,
    serif;
  z-index: 2;
}
.galleryWords em {
  color: #c7a895;
  margin-left: 100px;
}
.galleryWords span:last-child {
  margin-left: 25px;
}
.process {
  padding: 150px 9vw;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr 1fr;
  gap: 6vw;
}
.processIntro p {
  max-width: 490px;
  font:
    16px/1.8 Georgia,
    serif;
  color: #665c57;
  margin-top: 35px;
}
.process ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process li {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid #cfc2b8;
}
.process li:last-child {
  border-bottom: 1px solid #cfc2b8;
}
.process b {
  font:
    italic 13px Georgia,
    serif;
  color: var(--wine);
}
.process li span {
  font-size: 13px;
  line-height: 1.65;
  color: #645a55;
}
.process strong {
  display: block;
  font:
    26px Georgia,
    serif;
  color: var(--ink);
  margin-bottom: 8px;
}
.quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: #d7c5b9;
}
.quoteImage {
  min-height: 650px;
}
.quote blockquote {
  margin: 0;
  padding: 10vw 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote blockquote > span {
  font:
    90px Georgia,
    serif;
  color: var(--wine);
  line-height: 0.5;
}
.quote blockquote p {
  font:
    italic clamp(30px, 3.3vw, 52px)/1.18 Georgia,
    serif;
  letter-spacing: -0.02em;
}
.quote cite {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.25em;
  margin-top: 30px;
}
.testimonial {
  padding: 135px 10vw 145px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  align-items: center;
  background: #efe6de;
  overflow: hidden;
}
.testimonialCopy h2 {
  font:
    400 clamp(42px, 5vw, 72px)/1 Georgia,
    serif;
  letter-spacing: -0.04em;
  margin: 38px 0 30px;
}
.testimonialCopy h2 em {
  font-weight: 400;
  color: var(--wine);
}
.testimonialCopy > p:not(.sectionNumber) {
  max-width: 480px;
  font:
    17px/1.75 Georgia,
    serif;
  color: #665a54;
}
.testimonialCopy > span {
  display: inline-block;
  margin-top: 38px;
  padding-top: 13px;
  border-top: 1px solid #b9a89e;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #746761;
}
.whatsappProof {
  margin: 0 auto;
  max-width: 610px;
  width: 100%;
  position: relative;
  transform: rotate(1.2deg);
  padding: 16px 16px 12px;
  background: #f9f5f0;
  box-shadow: 0 30px 80px rgba(43, 28, 24, 0.2);
}
.whatsappProof img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.whatsappProof figcaption {
  padding: 13px 5px 3px;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #81736d;
}
.proofTape {
  position: absolute;
  z-index: 2;
  width: 115px;
  height: 32px;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(217, 200, 186, 0.78);
  box-shadow: 0 2px 8px rgba(70, 45, 38, 0.1);
}
.pricing {
  padding: 150px 8vw;
}
.pricingHead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.pricingHead .sectionNumber {
  margin-bottom: 25px;
}
.pricingHead p:last-child {
  font:
    16px Georgia,
    serif;
  color: #6b615c;
  margin-top: 30px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: auto;
  align-items: stretch;
}
.plan {
  position: relative;
  padding: 45px 42px 40px;
  border: 1px solid #cbbdb3;
  background: #f7f3ee;
}
.plan + .plan {
  border-left: 0;
}
.plan.featured {
  background: var(--wine);
  color: #fff;
  transform: translateY(-14px);
  padding-top: 59px;
}
.popular {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e7d8d7;
}
.planName {
  font:
    26px Georgia,
    serif;
  margin: 0 0 28px;
}
.planPrice {
  font:
    42px Georgia,
    serif;
  margin: 0;
}
.planFeatures {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  min-height: 145px;
}
.planFeatures li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(117, 106, 101, 0.22);
  font:
    14px/1.5 Georgia,
    serif;
  color: #746965;
}
.planFeatures li:before {
  content: "—";
  position: absolute;
  left: 0;
}
.featured .planFeatures li {
  color: #e5d5d6;
  border-color: rgba(255, 255, 255, 0.18);
}
.plan a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  padding-top: 18px;
  margin-top: 35px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.contact {
  background: #201b1a;
  color: white;
  text-align: center;
  padding: 130px 20px 120px;
}
.contact h2 {
  font-size: clamp(48px, 6vw, 84px);
}
.contact h2 em {
  color: #c99da8;
}
.contact > p:not(.eyebrow) {
  font:
    16px Georgia,
    serif;
  color: #cfc3bd;
  margin: 32px 0;
}
.contact .button {
  margin: auto;
}
footer {
  background: #161211;
  color: #cfc5bf;
  padding: 55px 6vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footerBrand span {
  color: white;
}
.footerBrand small {
  color: #b3a9a4;
}
@media (max-width: 800px) {
  .nav {
    height: 70px;
  }
  .nav nav {
    display: none;
  }
  .navCta {
    font-size: 8px;
  }
  .heroContent {
    padding: 120px 7vw 60px;
  }
  .heroImage {
    background-position: 55% 50%;
  }
  .heroShade {
    background: linear-gradient(
      90deg,
      rgba(18, 12, 11, 0.72),
      rgba(18, 12, 11, 0.15)
    );
  }
  .hero h1 {
    font-size: 47px;
  }
  .manifest {
    grid-template-columns: 1fr;
    padding: 95px 7vw;
  }
  .gallery {
    min-height: 850px;
  }
  .photoOne {
    width: 68%;
    height: 52%;
    left: 0;
    top: 6%;
  }
  .photoTwo {
    width: 44%;
    height: 34%;
    right: 0;
    top: 48%;
  }
  .photoThree {
    width: 45%;
    height: 32%;
    left: 12%;
    bottom: -2%;
    z-index: 1;
  }
  .galleryWords {
    left: 27%;
    top: 39%;
    font-size: 43px;
  }
  .process {
    grid-template-columns: 1fr;
    padding: 95px 7vw;
  }
  .process ol {
    margin-top: 25px;
  }
  .quote {
    grid-template-columns: 1fr;
  }
  .quoteImage {
    min-height: 520px;
  }
  .quote blockquote {
    padding: 90px 8vw;
  }
  .testimonial {
    grid-template-columns: 1fr;
    padding: 90px 7vw 100px;
    gap: 65px;
  }
  .testimonialCopy h2 {
    margin-top: 28px;
  }
  .whatsappProof {
    width: 96%;
    padding: 10px 10px 8px;
    transform: rotate(0.5deg);
  }
  .proofTape {
    width: 90px;
    height: 25px;
    top: -14px;
  }
  .plans {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .plan + .plan {
    border-left: 1px solid #cbbdb3;
  }
  .plan.featured {
    transform: none;
  }
  .pricing {
    padding: 100px 6vw;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .verticalNote {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .photo img {
    transition: none;
  }
}
