:root {
  --petrol: #1F3A3A;
  --gold: #D6B47C;
  --creme: #F6F1E8;
  --accent-red: #6D250F;
  --white: #FFFFFF;
  --text: #2A2A28;
  --text-soft: rgba(42, 42, 40, 0.78);
  --line: rgba(31, 58, 58, 0.12);
  --shadow: 0 18px 45px rgba(20, 29, 29, 0.08);
  --shadow-soft: 0 10px 28px rgba(20, 29, 29, 0.06);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1200px;
  --transition: 280ms ease;
}

@font-face {
  font-family: "Amsterdam Four";
  src: url("fonts/AmsterdamFour.woff2") format("woff2"),
       url("fonts/AmsterdamFour.woff") format("woff");
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--creme);
  font-family: "Libre Baskerville", "Cormorant Garamond", serif;
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 860px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 241, 232, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 58, 58, 0.08);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo-script {
  font-family: "Amsterdam Four", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--petrol);
  position: relative;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--petrol);
  margin: 6px auto;
  transition: var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--petrol);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #162d2d;
}

.btn-secondary {
  border-color: rgba(31, 58, 58, 0.22);
  color: var(--petrol);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(31, 58, 58, 0.05);
}

.btn-gold,
.btn-nav {
  background: var(--gold);
  color: var(--petrol);
}

.btn-gold:hover,
.btn-nav:hover {
  background: #cda86b;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: stretch;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 31, 31, 0.82) 0%, rgba(18, 31, 31, 0.56) 35%, rgba(18, 31, 31, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 31, 31, 0.15) 0%, rgba(18, 31, 31, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 8rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92vh;
  max-width: 760px;
  color: var(--white);
}

.eyebrow,
.section-label,
.mini-label {
  display: inline-block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.section-label.light {
  color: rgba(214, 180, 124, 0.95);
}

.hero h1,
.sub-hero h1,
.section h2,
.offer-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 12ch;
}

.hero-lead,
.hero-sub,
.sub-hero p,
.section-intro,
.contact-copy {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-lead {
  max-width: 36rem;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sub-hero {
  padding: 6rem 0 2rem;
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.sub-hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  color: var(--petrol);
}

.sub-hero-media img {
  border-radius: var(--radius);
  min-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.28)),
    #efe7da;
}

.section-dark {
  background: var(--petrol);
  color: var(--white);
}

.section-dark h2,
.section-dark p,
.section-dark li {
  color: var(--white);
}

.quote-band {
  padding: 2.5rem 0;
}

.quote-band-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold);
  text-align: center;
  margin: 0;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading.centered,
.centered {
  text-align: center;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  color: var(--petrol);
}

.section-dark h2 {
  color: var(--white);
}

.rich-text p {
  margin: 0 0 0.75rem;
}

.rich-text.centered p {
  max-width: 54rem;
  margin-inline: auto;
}

.light-text {
  color: rgba(255,255,255,0.9);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-soft {
  gap: 4rem;
}

.split-center {
  align-items: center;
}

.media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 520px;
  object-fit: cover;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.offer-card,
.testimonial,
.contact-form,
.contact-card {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(31, 58, 58, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.offer-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offer-card-image img {
  height: 280px;
  object-fit: cover;
}

.offer-card-body {
  padding: 1.5rem;
}

.offer-card h3 {
  font-size: 2rem;
  color: var(--petrol);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-red);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.signature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
}

.signature-list li,
.pill {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(31, 58, 58, 0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
}

.section-dark .pill,
.section-dark .signature-list li {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.invitation {
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.testimonial {
  padding: 1.5rem;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.testimonial p {
  margin: 0;
  color: rgba(255,255,255,0.9);
}

.contact-section .split {
  align-items: start;
}

.contact-card {
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.contact-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  color: var(--petrol);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 58, 58, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,0.88);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 180, 124, 0.18);
}

.site-footer {
  background: #eadfce;
  border-top: 1px solid rgba(31, 58, 58, 0.08);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand {
  font-family: "Amsterdam Four", "Cormorant Garamond", serif;
  color: var(--petrol);
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
}

.footer-nav,
.footer-socials {
  display: grid;
  gap: 0.5rem;
}

.footer-nav a,
.footer-socials a {
  color: var(--petrol);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.top-space {
  margin-top: 1.5rem;
}

@media (max-width: 1080px) {
  .three-up,
  .two-up,
  .testimonial-grid,
  .split,
  .sub-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .order-mobile-last {
    order: 2;
  }

  .media img,
  .sub-hero-media img {
    min-height: 380px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    background: rgba(246, 241, 232, 0.98);
    border: 1px solid rgba(31, 58, 58, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.45rem 0.25rem;
  }

  .signature-list {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 7rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100svh;
    padding-block: 7.5rem 3rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .offer-card-image img {
    height: 240px;
  }
}
.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image img {
  width: auto;
  height: 64px;
  object-fit: contain;
  display: block;
}

.footer-socials,
.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--petrol);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.social-btn:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--petrol);
}

.contact-card a {
  word-break: break-word;
}

.contact-card a[href^="mailto:"] {
  color: var(--accent-red);
}

@media (max-width: 860px) {
  .logo-image img {
    height: 52px;
  }
}

@media (max-width: 640px) {
  .logo-image img {
    height: 46px;
  }

  .footer-socials,
  .contact-social-row {
    gap: 0.55rem;
  }

  .social-btn {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
}