/* ── Variables ── */
:root {
  --gold:        #c8a96e;
  --gold-light:  #e8d5b0;
  --cream:       #faf7f2;
  --warm-white:  #fff9f2;
  --dark:        #2c2520;
  --mid:         #6b5f56;
  --light-line:  #e8ddd4;
  --nav-height:  72px;
}



/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-weight: 300;
  line-height: 1.75;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400;
  letter-spacing: .04em; color: var(--dark);
  transition: color .2s;
}
.nav-logo:hover span { color: var(--gold); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid); transition: color .2s;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold); border-bottom-color: var(--gold);
}

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--dark); transition: .3s; }

/* mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--warm-white); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; letter-spacing: .05em;
  color: var(--dark); transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── Page wrapper ── */
.page {
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height));
}

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 14px 36px;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  transition: background .25s, color .25s;
}
.btn:hover { background: var(--gold); color: var(--warm-white); }
.btn-filled { background: var(--gold); color: var(--warm-white); }
.btn-filled:hover { background: var(--dark); border-color: var(--dark); }

/* ── Gold divider ── */
.gold-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 48px 0;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 1; max-width: 120px; height: 1px; background: var(--gold-light);
}
.gold-divider span { color: var(--gold); font-size: 1.2rem; }

/* ── Section base ── */
.section { padding: 100px 10vw; }
.section-label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 32px;
}

.section h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 300; 
  color: var(--mid); line-height: 1.7; margin: 0;
  margin-bottom: 16px;
}
.section p {
  color: var(--mid);  margin-bottom: 20px;
  font-size: 1rem; line-height: 1.9;
}

/* ── Page hero banner (for subpages) ── */
.page-banner {
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-line);
  padding: 80px 10vw 60px;
}
.page-banner .section-label { margin-bottom: 12px; }
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
}
.page-banner p {
  color: var(--mid); margin-top: 20px;
  font-size: 1.05rem; line-height: 1.85;
}


  .cv-section { padding: 0 10% 80px;  background: var(--warm-white); }
  .cv-block { margin-bottom: 56px; }
  .cv-block-title { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 1.5rem; font-weight: 300; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--light-line); }
  .cv-row { display: grid; grid-template-columns: 160px 1fr; gap: 12px 24px; padding: 10px 0; border-bottom: 1px solid var(--cream); align-items: baseline; }
  .cv-row:last-child { border-bottom: none; }
  .cv-year { font-size: .82rem; color: var(--gold); letter-spacing: .04em; font-weight: 400; padding-top: 2px; }
  .cv-desc { font-size: .93rem; color: var(--mid); line-height: 1.7; }
  .cv-desc a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .2s; }
  .cv-desc a:hover { border-bottom-color: var(--gold); }

  @media (max-width: 600px) {
    .om-banner, .om-body, .cv-section { padding-left: 24px; padding-right: 24px; }
    .cv-row { grid-template-columns: 1fr; gap: 4px; }
  }


/* ── Hero (front page only) ── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.hero-text { padding: 80px 64px 80px 10vw; }
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 300;
  line-height: 1.15; margin-bottom: 28px; color: var(--dark);
}
.hero-text h1 em { font-style: italic; color: var(--gold); }
.hero-text p {
  font-size: 1rem; color: var(--mid); max-width: 440px;
  margin-bottom: 40px; line-height: 1.85;
}
.hero-image {
  height: calc(100vh - var(--nav-height)); overflow: hidden; position: relative;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }


/* ── About image ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative;  }
.about-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover;  max-height: 700px; }


/* ── Services ── */
.services { background: var(--warm-white); border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); padding: 80px 10vw; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.service-card {
  padding: 40px 32px; border: 1px solid var(--light-line); background: var(--cream);
  transition: border-color .25s, background .25s; cursor: pointer;
}
.service-card:hover { border-color: var(--gold-light); background: var(--warm-white); }
.service-number {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300;
  color: var(--gold-light); line-height: 1; margin-bottom: 16px;
}
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; }
.service-card p { font-size: .88rem; color: var(--mid); line-height: 1.8; }

/* ── Quote ── */
.quote-section {
  padding: 120px 10vw; background: var(--dark); color: var(--cream); text-align: center;
}
.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 300; font-style: italic;
  line-height: 1.5; max-width: 760px; margin: 0 auto 32px; color: var(--gold-light);
}
.quote-section cite { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--mid); }

.testimonialBox {
    max-width: 680px; border-left: 2px solid var(--gold);
    padding: 20px 50px; margin-top: 12px;
    background: var(--warm-white);
  }
  .testimonialBox p {
    margin: 0; font-size: 1rem; color: var(--mid);
    font-style: italic; font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem; line-height: 1.8;

  }

/* ── Testimonials ── */
.testimonials { padding: 100px 10vw; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial { padding: 40px 36px; border: 1px solid var(--light-line); position: relative; }
.testimonial::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: .8; color: var(--gold-light);
  position: absolute; top: 24px; left: 28px;
}
.testimonial p { font-size: .93rem; color: var(--mid); line-height: 1.85; margin-bottom: 24px; padding-top: 32px; }
.testimonial-name { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

/* ── Contact ── */
.contact { background: var(--warm-white); border-top: 1px solid var(--light-line); padding: 100px 10vw; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; margin-bottom: 24px; }
.contact p { color: var(--mid); font-size: 1rem; line-height: 1.85; margin-bottom: 12px; }
.contact a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .2s; }
.contact a:hover { border-bottom-color: var(--gold); }
.contact-info { margin-top: 32px; }
.contact-info-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: .93rem; color: var(--mid); }
.contact-info-item .icon {
  width: 32px; height: 32px; border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: .85rem;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); }
.form-group input, .form-group textarea {
  background: var(--cream); border: 1px solid var(--light-line);
  padding: 14px 18px; font-family: 'Jost', sans-serif;
  font-size: .93rem; color: var(--dark); outline: none;
  transition: border-color .2s; resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; }

/* ── Footer ── */
footer {
  background: var(--dark); color: var(--mid);
  padding: 48px 10vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold-light); letter-spacing: .06em; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .75rem; }


/* ── tl ── */
.tl-section { padding: 30px 10%; }
.tl-label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
  font-family: 'Jost', 'Segoe UI', sans-serif; font-weight: 300;
}
.tl-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2;
  margin-bottom: 32px; color: var(--dark);
}
.tl-section p {
  font-family: 'Jost', 'Segoe UI', sans-serif; font-weight: 300;
  color: var(--mid); margin-bottom: 20px;
  font-size: 1rem; line-height: 1.9;
}
.tl-section em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; color: var(--dark); font-size: 1.05em;
}
.tl-divider {
  display: flex; align-items: center; gap: 16px; margin: 40px 0;
}
.tl-divider::before, .tl-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gold-light);
}
.tl-divider span { color: var(--gold); font-size: 1rem; }
.tl-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin: 8px 0 36px;
  
}
.tl-card {
  border: 1px solid var(--light-line); padding: 28px 24px; background: var(--warm-white);
}
.tl-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem; font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.tl-card-body {
  font-family: 'Jost', 'Segoe UI', sans-serif; font-weight: 300;
  font-size: .88rem; color: var(--mid); line-height: 1.75; margin: 0;
}
.tl-card-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem; font-weight: 300; color: var(--gold-light);
  line-height: 1; margin-bottom: 12px;
}

.tl-mission {
 font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem; font-weight: 300; font-style: italic;
    color:var(--mid); line-height: 1.7; margin: 0;
  
}
@media (max-width: 600px) {
  .tl-section { padding: 64px 24px; }
  .tl-cards { grid-template-columns: 1fr; }
}
.mv { padding: 32px 10%; font-family: 'Jost','Segoe UI',sans-serif; }
.mv-label {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block; font-weight: 300;
}

/* A — large italic serif, no box */
.mv-a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; font-style: italic;
  color: var(--dark); line-height: 1.55; margin: 0;
}

/* B — centered with gold ornament */
.mv-b-wrap { text-align: center; padding: 16px 0; }
.mv-b-ornament { color: var(--gold-light); font-size: 2.5rem; line-height: 1; margin-bottom: 16px; font-family: Georgia, serif; }
.mv-b {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 300; font-style: italic;
  color: var(--mid); line-height: 1.7; margin: 0;
}

/* C — gold text, no decoration */
.mv-c {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 400;
  color: var(--gold); line-height: 1.7; margin: 0; letter-spacing: .01em;
}

.mv-divider {
  border: none; border-top: 1px solid var(--light-line); margin: 36px 0;
}
.mv-tag {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 300; margin-bottom: 10px; display: block;
}

/* ── Language switcher ── */
.nav-right {
  display: flex; align-items: center; gap: 16px;
}
.lang-switch {
  display: flex; align-items: center; gap: 7px;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); transition: color .2s;
  border: 1px solid var(--light-line); padding: 5px 11px;
}
.lang-switch:hover { color: var(--gold); border-color: var(--gold-light); }
.lang-switch span { color: inherit; }
.lang-switch--mobile { margin-top: 12px; font-size: .85rem; }


/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp .7s ease forwards; }
.fade-up:nth-child(2) { animation-delay: .1s; }
.fade-up:nth-child(3) { animation-delay: .2s; }
.fade-up:nth-child(4) { animation-delay: .3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 60px 24px; }
  .section { padding: 64px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 64px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact { padding: 64px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .page-banner { padding: 60px 24px 48px; }
}
