:root {
  --cream: #f7f2eb;
  --soft-cream: #efe6da;
  --champagne: #d9c2a0;
  --gold: #b89155;
  --gold-deep: #8e6b38;
  --ink: #171412;
  --ink-soft: #5a5148;
  --white: #ffffff;
  --line: rgba(23, 20, 18, 0.10);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 45px rgba(17, 13, 10, 0.10);
  --shadow-soft: 0 10px 30px rgba(17, 13, 10, 0.07);
  --radius: 4px;
  --wrap: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.75;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-wrap {
  width: min(92%, var(--wrap));
  margin: 0 auto;
}

.topbar {
  background: #120f0d;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 242, 235, 0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(247, 242, 235, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(18, 15, 13, 0.06);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a,
.mobile-nav a {
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  transition: 0.25s ease;
}

.main-nav a:hover,
.mobile-nav a:hover {
  color: var(--gold-deep);
}

.header-cta,
.btn,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.3s ease;
  cursor: pointer;
}

.header-cta {
  background: transparent;
  border: 1px solid var(--ink);
}

.header-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius);
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav {
  display: none;
  padding: 0 4% 18px;
  background: rgba(247, 242, 235, 0.98);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: calc(100vh - 44px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #120f0d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-1.jpg');
  background-size: cover;
  background-position: center 28%;
  transform: scale(1.06);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,15,13,0.84) 0%, rgba(18,15,13,0.60) 45%, rgba(18,15,13,0.38) 100%);
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.14);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 430px;
  gap: 60px;
  align-items: end;
  padding: 120px 0 110px;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--champagne);
  font-size: 13px;
}

.section-label {
  padding: 8px 14px;
  background: rgba(184, 145, 85, 0.10);
  border: 1px solid rgba(142, 107, 56, 0.18);
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.20em;
}

.hero-copy h1 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.95;
  font-weight: 600;
  max-width: 780px;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 34px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-dark {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-dark:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.btn-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-light:hover {
  background: rgba(255,255,255,0.08);
}

.hero-panel {
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-panel-line {
  color: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
}

.hero-panel-line:last-child {
  border-bottom: 0;
}

.intro-band {
  position: relative;
  margin-top: -64px;
  z-index: 3;
}

.intro-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.intro-card {
  background: var(--white);
  padding: 30px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.intro-card span {
  display: block;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--gold-deep);
}

.intro-card p {
  margin: 0;
  color: var(--ink-soft);
}

.section {
  padding: 120px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-heading h2,
.section-center h2,
.signature-copy h2,
.founder-copy h2,
.promise-box h2,
.contact-copy h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 600;
}

.section-text p,
.section-center p,
.signature-copy p,
.founder-copy p,
.promise-box p,
.contact-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.stat-box {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat-box strong {
  display: block;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold-deep);
}

.services-section {
  background: linear-gradient(to bottom, var(--cream) 0%, #f2eadf 100%);
}

.section-center {
  max-width: 840px;
  margin: 0 auto 56px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
  min-height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(17, 13, 10, 0.12);
  border-color: rgba(142, 107, 56, 0.22);
}

.service-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217, 194, 160, 0.24), rgba(184, 145, 85, 0.08));
  border: 1px solid rgba(184, 145, 85, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
  transition: transform 0.45s ease, background 0.45s ease, border-color 0.45s ease;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(217, 194, 160, 0.34), rgba(184, 145, 85, 0.14));
  border-color: rgba(184, 145, 85, 0.34);
}

.service-card h3,
.signature-item h3 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1.1;
}

.service-card p,
.signature-item p,
.contact-detail-box span,
.footer-text,
.founder-title {
  color: var(--ink-soft);
}

.signature-section {
  background: #151210;
  color: var(--white);
}

.signature-section .section-label {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  color: var(--champagne);
}

.signature-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.signature-copy p {
  color: rgba(255,255,255,0.76);
}

.signature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.signature-item {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px;
  background: rgba(255,255,255,0.04);
}

.signature-item p {
  color: rgba(255,255,255,0.74);
  margin: 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 70px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}

.founder-image-wrap::before {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 85%;
  height: 85%;
  border: 1px solid var(--gold);
  z-index: 0;
}

.founder-image {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.founder-title {
  margin: 8px 0 24px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promise-section {
  padding-top: 0;
}

.promise-box {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 70px 60px;
  box-shadow: var(--shadow-soft);
}

.promise-box h2 {
  margin-bottom: 20px;
}

.contact-section {
  background: linear-gradient(to bottom, #f2eadf 0%, #f7f2eb 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-detail-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
}

.contact-detail-box strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold-deep);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(23,20,18,0.14);
  background: #fcfaf7;
  color: var(--ink);
  padding: 16px 14px;
  border-radius: 0;
  outline: none;
  font: inherit;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.submit-btn {
  width: 100%;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.submit-btn:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.form-response {
  margin-top: 18px;
}

.form-success,
.form-error {
  padding: 14px 16px;
  border: 1px solid;
  font-size: 14px;
}

.form-success {
  border-color: rgba(45, 128, 76, 0.35);
  background: rgba(45, 128, 76, 0.07);
  color: #235437;
}

.form-error {
  border-color: rgba(168, 66, 66, 0.35);
  background: rgba(168, 66, 66, 0.06);
  color: #7b2323;
}

.site-footer {
  background: #120f0d;
  color: rgba(255,255,255,0.82);
  padding: 70px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.82);
}

.site-footer a:hover {
  color: var(--white);
}

.reveal-card {
  opacity: 0;
  transform: translateY(26px);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-grid .reveal-card:nth-child(2).is-visible {
  transition-delay: 0.12s;
}

.services-grid .reveal-card:nth-child(3).is-visible {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
  }

  .service-card,
  .service-icon,
  .reveal-card,
  .reveal-card.is-visible {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .hero-content,
  .two-col,
  .signature-wrap,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .founder-grid {
    gap: 40px;
  }

  .founder-image {
    min-height: 520px;
  }
}

@media (max-width: 960px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-nav.open {
    display: block;
  }

  .intro-band-inner,
  .services-grid,
  .signature-list,
  .footer-grid,
  .stat-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 90px 0;
  }

  .hero-content {
    padding: 90px 0 110px;
    gap: 30px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .intro-band {
    margin-top: -30px;
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 76px 0 92px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .header-inner {
    grid-template-columns: auto auto;
    gap: 16px;
  }

  .logo {
    font-size: 30px;
  }

  .hero-copy p,
  .section-text p,
  .section-center p,
  .signature-copy p,
  .founder-copy p,
  .promise-box p,
  .contact-copy p {
    font-size: 16px;
  }

  .promise-box,
  .contact-form-wrap,
  .service-card,
  .intro-card,
  .signature-item,
  .stat-box {
    padding: 26px;
  }

  .hero-panel {
    padding: 26px;
  }

  .section-heading h2,
  .section-center h2,
  .signature-copy h2,
  .founder-copy h2,
  .promise-box h2,
  .contact-copy h2 {
    font-size: 2.4rem;
  }
}
