/* ── Design tokens ────────────────────────────────────────────── */
:root {
  --cream:    #fefcf9;
  --charcoal: #1c1612;
  --ink:      #2c2218;
  --gold:     #b5924c;
  --gold-pale: rgba(181,146,76,.1);
  --warm:     #8b7355;
  --line:     #e8e0d5;
  --muted:    #8b7d6d;
  --white:    #ffffff;
  --shadow:   0 24px 70px rgba(28,22,18,.08);
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ── Reveal — opacity only (more elegant) ─────────────────────── */
.reveal { opacity: 0; transition: opacity .9s ease; }
.reveal.visible { opacity: 1; }

/* ── Container ────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.5rem; }

.eyebrow {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 2.25rem;
  border-radius: 2px;
  font-size: .85rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover { background: var(--ink); box-shadow: 0 8px 28px rgba(28,22,18,.2); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-cta {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.5);
}
.btn-cta:hover { background: rgba(255,255,255,.1); border-color: var(--cream); }

/* ── Header ───────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254,252,249,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  font-size: .75rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  letter-spacing: .05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero { background: var(--cream); overflow: hidden; }
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 24px;
  max-width: 640px;
  margin-left: auto;
}
.hero-copy h1 { margin-bottom: 1.5rem; font-style: italic; }
.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 420px;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-credentials { display: flex; align-items: center; gap: 1.5rem; }
.cred-item { display: flex; flex-direction: column; gap: .15rem; }
.cred-item strong { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); }
.cred-item span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cred-divider { width: 1px; height: 36px; background: var(--line); }
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img { height: 100%; object-fit: cover; transition: transform 6s ease; }
.hero-photo:hover img { transform: scale(1.03); }
.hero-liserai {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: .6;
}

/* ── Section ──────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-heading { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section-heading p { color: var(--muted); margin-top: .75rem; font-weight: 300; }

/* ── Services — alternating ───────────────────────────────────── */
.services-section { background: var(--white); }
.services-alternating { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-media img { transition: transform .6s ease; }
.service-row:hover .service-media img { transform: scale(1.04); }
.service-text {
  padding: 3.5rem 4rem;
}
.service-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.service-text p { color: var(--muted); font-size: .95rem; font-weight: 300; }

/* ── Packs ────────────────────────────────────────────────────── */
.packs-section { background: var(--cream); }
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.pack-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: box-shadow .3s;
}
.pack-card:hover { box-shadow: var(--shadow); }
.pack-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
}
.pack-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}
.pack-card .price span { font-size: 1.2rem; font-weight: 400; font-family: 'Lato', sans-serif; color: var(--muted); }
.pack-card ul { flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.pack-card li {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
}
.pack-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.pack-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--white) 70%, var(--gold-pale));
}
.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  padding: .35rem 1rem;
  width: fit-content;
}

/* ── Image section ────────────────────────────────────────────── */
.image-section { background: var(--white); }
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.image-copy h2 { margin-bottom: 1.25rem; }
.image-copy p { color: var(--muted); margin-bottom: 2rem; font-weight: 300; }
.image-points { display: flex; flex-direction: column; gap: .75rem; }
.image-points span {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 400;
  padding-left: 1.25rem;
  position: relative;
}
.image-points span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.image-gallery { position: relative; height: 480px; }
.gallery-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  height: 80%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-offset {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 60px;
  height: 55%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}

/* ── Sectors ──────────────────────────────────────────────────── */
.sectors-section { background: var(--cream); }
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
}
.sector-card {
  position: relative;
  aspect-ratio: 2/3;
  background: var(--cream);
  overflow: hidden;
}
.sector-card img { transition: transform .6s ease; }
.sector-card:hover img { transform: scale(1.05); }
.sector-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28,22,18,.7));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .35s;
}
.sector-card:hover .sector-cap { opacity: 1; }
.sector-cap h3 { color: var(--cream); font-size: 1.1rem; font-style: italic; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.testimonial-card { display: flex; flex-direction: column; gap: 1.5rem; }
.testimonial-img {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
}
.testimonial-img img { transition: transform .5s ease; }
.testimonial-card:hover .testimonial-img img { transform: scale(1.04); }
.testimonial-body p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.7;
  position: relative;
  padding-top: 1rem;
}
.testimonial-body p::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  left: -4px;
  font-size: 4rem;
  color: var(--gold);
  opacity: .3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.testimonial-body strong { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); margin-top: .75rem; }
.testimonial-body span { font-size: .78rem; color: var(--muted); font-weight: 300; }

/* ── CTA ──────────────────────────────────────────────────────── */
.cta-section { background: var(--charcoal); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 500px;
}
.cta-photo { height: 500px; position: relative; }
.cta-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, var(--charcoal));
}
.cta-copy {
  padding: 5rem 4rem 5rem 3rem;
  color: var(--cream);
}
.cta-copy .eyebrow { color: var(--gold); }
.cta-copy h2 { color: var(--cream); margin-bottom: 1.25rem; font-style: italic; }
.cta-copy p { color: rgba(254,252,249,.6); font-weight: 300; font-size: .95rem; margin-bottom: 2rem; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  padding: 96px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.contact-copy .eyebrow { color: var(--gold); }
.contact-copy h2 { margin-bottom: 1rem; font-style: italic; }
.contact-copy p { color: var(--muted); font-weight: 300; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--warm);
  border-radius: 0;
  padding: .85rem 1rem;
  font-size: .9rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.form-status { font-size: .88rem; color: var(--gold); min-height: 1.2rem; font-style: italic; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--charcoal); border-top: 1px solid rgba(181,146,76,.2); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 64px 24px 48px;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.footer-brand p { font-size: .85rem; color: rgba(254,252,249,.4); line-height: 1.7; font-weight: 300; }
.footer-title {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a, .footer-contact a {
  font-size: .85rem;
  color: rgba(254,252,249,.45);
  font-weight: 300;
  transition: color .2s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-note { font-size: .78rem; color: rgba(254,252,249,.2); margin-top: .5rem; }
.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 1.25rem 24px;
  border-top: 1px solid rgba(181,146,76,.12);
  font-size: .78rem;
  color: rgba(254,252,249,.25);
  font-weight: 300;
  letter-spacing: .1em;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 60px 24px; max-width: 100%; margin: 0; }
  .hero-photo { height: 50vw; min-height: 260px; }
  .services-alternating { gap: 0; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse { direction: ltr; }
  .service-text { padding: 2rem 1.5rem; }
  .packs-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .image-grid { grid-template-columns: 1fr; gap: 3rem; }
  .image-gallery { height: 320px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-photo { height: 300px; }
  .cta-copy { padding: 3rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 64px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .section { padding: 64px 0; }
  .hero-credentials { flex-wrap: wrap; gap: 1rem; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }
}
