:root {
  --ink: #11110f;
  --paper: #f7f3eb;
  --gold: #c49a63;
  --green: #224f39;
  --white: #fff;
  --muted: #6e6b64;
  --border: #e3ddd2;
  --dark: #10130f;
  --radius: 24px;
}


/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: "DM Sans", sans-serif;

  background: var(--paper);

  color: var(--ink);

  line-height: 1.6;
}

img {
  display: block;

  width: 100%;

  object-fit: cover;
}

a {
  color: inherit;

  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;

  line-height: 1.05;

  margin: 0;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;

  z-index: 50;

  top: 0;
  left: 0;
  right: 0;

  height: 84px;

  display: flex;

  align-items: center;

  gap: 28px;

  padding: 12px 5vw;

  background: rgba(10, 10, 9, 0.74);

  backdrop-filter: blur(15px);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.12);

  color: #fff;
}

.brand img {
  height: 58px;

  width: 168px;

  object-fit: cover;
}

.nav {
  display: flex;

  gap: 24px;

  margin-left: auto;
}

.nav a {
  font-size: 0.94rem;

  opacity: 0.86;

  transition: 0.25s;
}

.nav a:hover,
.nav a.active {
  opacity: 1;

  color: var(--gold);
}

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 13px 20px;

  border-radius: 999px;

  font-weight: 700;

  transition: 0.25s;

  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);

  color: #111;
}

.btn-ghost {
  border-color:
    rgba(255, 255, 255, 0.65);

  color: #fff;
}

.menu-btn {
  display: none;

  background: none;

  border: 0;

  color: #fff;

  font-size: 1.5rem;
}


/* =========================
   SHARED
========================= */

.section {
  padding: 110px 7vw;
}

.eyebrow {
  font-size: 0.76rem;

  font-weight: 700;

  letter-spacing: 0.18em;

  margin: 0 0 18px;
}

.eyebrow.dark {
  color: var(--green);
}

.section-heading {
  max-width: 800px;

  margin-bottom: 55px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);

  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 620px;

  margin-top: 24px;

  color: var(--muted);

  font-size: 1.05rem;
}

.reveal {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =========================
   HERO
========================= */

.contact-hero {
  min-height: 86vh;

  position: relative;

  display: flex;

  align-items: center;

  padding: 150px 7vw 110px;

  background:
    url("../media/exprience/IMG-20260806-WA0355.jpg")
    center / cover no-repeat;

  color: #fff;
}

.contact-hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(6, 9, 7, 0.9) 0%,
      rgba(7, 9, 8, 0.62) 52%,
      rgba(7, 9, 8, 0.2) 100%
    );
}

.contact-hero-content {
  position: relative;

  z-index: 2;

  max-width: 850px;
}

.contact-hero h1 {
  font-size: clamp(4rem, 8vw, 7rem);

  letter-spacing: -0.04em;
}

.contact-hero h1 span {
  display: block;

  color: var(--gold);
}

.contact-hero-content > p:not(.eyebrow) {
  max-width: 650px;

  margin: 30px 0;

  font-size: 1.1rem;

  color:
    rgba(255, 255, 255, 0.84);
}

.hero-scroll {
  position: absolute;

  z-index: 2;

  bottom: 35px;

  right: 7vw;

  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 0.75rem;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  opacity: 0.75;
}

.scroll-line {
  width: 50px;

  height: 1px;

  background: var(--gold);
}


/* =========================
   PLAN SECTION
========================= */

.plan-section {
  background: var(--paper);
}

.plan-layout {
  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 7vw;

  align-items: start;
}

.plan-intro {
  position: sticky;

  top: 120px;
}

.plan-intro h2 {
  font-size: clamp(3rem, 5vw, 5rem);

  letter-spacing: -0.04em;
}

.plan-intro h2 span {
  display: block;

  color: var(--gold);
}

.plan-intro > p:not(.eyebrow) {
  color: var(--muted);

  font-size: 1.05rem;

  margin: 30px 0;
}

.planning-note {
  display: flex;

  gap: 16px;

  margin-top: 40px;

  padding: 20px;

  background: #fff;

  border:
    1px solid var(--border);

  border-radius: 18px;
}

.note-icon {
  width: 34px;

  height: 34px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--green);

  color: #fff;

  font-weight: 700;
}

.planning-note strong {
  display: block;

  margin-bottom: 4px;
}

.planning-note p {
  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;
}


/* =========================
   FORM
========================= */

.form-card {
  background: #fff;

  border:
    1px solid var(--border);

  border-radius: 26px;

  padding: 42px;

  box-shadow:
    0 25px 70px rgba(17, 17, 15, 0.07);
}

.form-heading {
  margin-bottom: 35px;
}

.form-heading > span {
  color: var(--green);

  font-size: 0.74rem;

  letter-spacing: 0.16em;

  font-weight: 800;
}

.form-heading h3 {
  font-size: 2.5rem;

  margin-top: 8px;
}

.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 18px;
}

label {
  display: block;

  margin-bottom: 8px;

  font-size: 0.85rem;

  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;

  padding: 15px 16px;

  border:
    1px solid #dcd6cb;

  border-radius: 12px;

  background: #fbfaf7;

  color: var(--ink);

  font-family: inherit;

  font-size: 0.95rem;

  outline: none;

  transition: 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);

  background: #fff;

  box-shadow:
    0 0 0 3px rgba(34, 79, 57, 0.08);
}

textarea {
  resize: vertical;

  min-height: 130px;
}

.submit-btn {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 17px 20px;

  border: 0;

  border-radius: 12px;

  background: var(--green);

  color: #fff;

  font-family: inherit;

  font-size: 1rem;

  font-weight: 700;

  cursor: pointer;

  transition: 0.25s;
}

.submit-btn:hover {
  background: #183c2b;

  transform: translateY(-2px);
}

.submit-btn span {
  font-size: 1.3rem;

  color: var(--gold);
}

.form-disclaimer {
  margin: 16px 0 0;

  color: var(--muted);

  font-size: 0.75rem;

  text-align: center;
}


/* =========================
   SUCCESS
========================= */

.success-message {
  display: none;

  text-align: center;

  padding: 50px 20px;
}

.success-message.show {
  display: block;
}

.success-icon {
  width: 64px;

  height: 64px;

  display: grid;

  place-items: center;

  margin: 0 auto 20px;

  border-radius: 50%;

  background: var(--green);

  color: #fff;

  font-size: 1.5rem;

  font-weight: 700;
}

.success-message h3 {
  font-size: 2.2rem;
}

.success-message p {
  max-width: 500px;

  margin: 18px auto 28px;

  color: var(--muted);
}


/* =========================
   PROCESS
========================= */

.process-section {
  padding: 110px 7vw;

  background: var(--dark);

  color: #fff;
}

.section-heading.light p {
  color: var(--gold);
}

.process-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.process-card {
  padding: 35px;

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.04);
}

.process-card > span {
  color: var(--gold);

  font-size: 0.85rem;

  font-weight: 800;
}

.process-card h3 {
  margin: 45px 0 14px;

  font-size: 2rem;
}

.process-card p {
  color:
    rgba(255, 255, 255, 0.65);
}


/* =========================
   CONTACT OPTIONS
========================= */

.contact-options {
  background: #efe9df;
}

.contact-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.contact-card {
  padding: 34px;

  background: #fff;

  border:
    1px solid var(--border);

  border-radius: 20px;

  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);

  border-color: var(--gold);
}

.contact-label {
  color: var(--green);

  font-size: 0.73rem;

  letter-spacing: 0.15em;

  font-weight: 800;
}

.contact-card h3 {
  margin: 24px 0 10px;

  font-size: 2rem;
}

.contact-card p {
  color: var(--muted);

  min-height: 50px;
}

.contact-card strong {
  display: inline-block;

  margin-top: 20px;

  color: var(--green);
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
  min-height: 580px;

  position: relative;

  display: grid;

  place-items: center;

  text-align: center;

  padding: 90px 7vw;

  background:
    url("../media/exprience/heart.jpg")
    center / cover no-repeat;

  color: #fff;
}

.final-cta-overlay {
  position: absolute;

  inset: 0;

  background:
    rgba(8, 10, 8, 0.7);
}

.final-cta-content {
  position: relative;

  z-index: 2;

  max-width: 850px;
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta h2 {
  font-size: clamp(3rem, 7vw, 6rem);

  letter-spacing: -0.04em;

  margin-bottom: 35px;
}


/* =========================
   FOOTER
========================= */

footer {
  background: #090a09;

  color: #fff;

  padding: 55px 7vw;

  display: grid;

  grid-template-columns:
    1fr 1fr 1fr;

  gap: 30px;

  align-items: start;
}

footer h3 {
  font-size: 1.7rem;
}

footer a {
  display: block;

  color:
    rgba(255, 255, 255, 0.75);

  margin-bottom: 8px;
}

footer a:hover {
  color: var(--gold);
}

footer p {
  margin: 6px 0;

  color:
    rgba(255, 255, 255, 0.6);
}

.concept-note {
  grid-column: 1 / -1;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);

  padding-top: 18px;

  font-size: 0.78rem;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .site-header {
    height: 72px;
  }

  .brand img {
    width: 140px;

    height: 50px;
  }

  .menu-btn {
    display: block;

    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .nav {
    display: none;

    position: absolute;

    top: 72px;

    left: 0;

    right: 0;

    background: #0d0e0d;

    padding: 20px 6vw;

    flex-direction: column;
  }

  .nav.open {
    display: flex;
  }

  .plan-layout {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .plan-intro {
    position: static;
  }

  .process-grid,
  .contact-grid {
    grid-template-columns:
      1fr 1fr;
  }

  footer {
    grid-template-columns:
      1fr 1fr;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 620px) {

  .section {
    padding: 78px 6vw;
  }

  .contact-hero {
    min-height: 90vh;

    padding:
      120px 6vw
      100px;
  }

  .contact-hero h1 {
    font-size:
      clamp(3.5rem, 15vw, 5rem);
  }

  .contact-hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-scroll {
    display: none;
  }

  .plan-intro h2 {
    font-size:
      clamp(3rem, 14vw, 4.5rem);
  }

  .form-card {
    padding: 25px 20px;

    border-radius: 20px;
  }

  .form-heading h3 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-card h3 {
    margin-top: 30px;
  }

  .contact-card p {
    min-height: auto;
  }

  .final-cta {
    min-height: 520px;

    padding:
      80px 6vw;
  }

  .final-cta h2 {
    font-size:
      clamp(3rem, 14vw, 4.5rem);
  }

  footer {
    grid-template-columns: 1fr;
  }
}