:root {
  --cream: #fffaf2;
  --surface: #fffdf8;
  --sand: #eee8dc;
  --olive: #6f784d;
  --olive-dark: #59613a;
  --olive-deep: #454c2e;
  --olive-light: #8a9169;
  --tan: #bcac8f;
  --navy: #1a2170;
  --navy-dark: #131a56;
  --navy-deep: #0d123f;
  --text: #3d4132;
  --text-muted: #6f7260;
  --border: #e5ddc9;
  --shadow: 0 10px 30px -12px rgba(69, 76, 46, 0.22);
  --shadow-lg: 0 24px 50px -20px rgba(69, 76, 46, 0.35);
  --radius: 20px;
  --radius-lg: 32px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Jost', system-ui, sans-serif;
  --max-width: 1140px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

section[id] {
  scroll-margin-top: 80px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(255, 250, 242, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 54px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.98rem;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-chevron,
.nav-item:focus-within .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  background: rgba(255, 250, 242, 0.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.dropdown-link:hover,
.dropdown-link.active {
  background: var(--sand);
  color: var(--navy);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.mobile-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(255, 250, 242, 0.98);
  border-bottom: 1px solid var(--border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0;
}

.mobile-nav-parent {
  font-weight: 600;
  color: var(--navy);
}

.mobile-subnav {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
  margin-left: 0.5rem;
}

.mobile-subnav-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ---------- Shared elements ---------- */

.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--navy);
  color: var(--cream);
  padding: 0.45rem 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.script-accent {
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  color: var(--olive);
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 8px 20px -8px rgba(19, 26, 86, 0.5);
}

.btn-primary:hover {
  background: var(--navy-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--tan);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--sand);
}

.btn-full {
  width: 100%;
}

/* ---------- Image placeholders (swap for real photos later) ---------- */

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.image-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--sand);
  border: 2px dashed var(--tan);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
}

.image-placeholder svg {
  width: 28px;
  height: 28px;
  color: var(--tan);
}

.image-placeholder.tall {
  aspect-ratio: 3 / 3.4;
}

.image-placeholder.on-olive {
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(255, 250, 242, 0.45);
  color: rgba(255, 250, 242, 0.85);
}

.image-placeholder.on-olive svg {
  color: rgba(255, 250, 242, 0.6);
}

.site-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(61, 66, 44, 0.14);
}

.site-photo.tall {
  aspect-ratio: 3 / 3.4;
}

@media (max-width: 768px) {
  .photo-row {
    grid-template-columns: 1fr;
  }

  .image-placeholder.tall,
  .site-photo.tall {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 5.5rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(188, 172, 143, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(26, 33, 112, 0.09) 0%, transparent 45%),
    var(--cream);
  text-align: center;
}

.leaf-deco {
  position: absolute;
  width: clamp(90px, 12vw, 150px);
  color: var(--olive);
  opacity: 0.16;
  pointer-events: none;
}

.leaf-left {
  left: 2%;
  bottom: 6%;
  transform: rotate(-12deg);
}

.leaf-right {
  right: 2%;
  top: 14%;
  transform: rotate(14deg) scaleX(-1);
}

.hero-inner {
  position: relative;
  max-width: 860px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--navy);
  margin: 0.5rem 0 1.25rem;
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-collage {
  text-align: left;
}

/* ---------- Sections ---------- */

.section {
  padding: 6rem 0;
}

.section-services {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header .script-accent {
  margin-top: 1.5rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1.25rem;
}

/* ---------- About / Mission ---------- */

.mission {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.mission-text {
  margin-top: 1.75rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
}

/* ---------- Your Home panel ---------- */

.home-panel {
  margin-top: 4rem;
  background: linear-gradient(160deg, var(--olive) 0%, var(--olive-dark) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.home-photos {
  margin-bottom: 2.5rem;
  text-align: left;
}

.home-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.home-lead {
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgba(255, 250, 242, 0.85);
  font-size: 1.05rem;
}

.home-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2.5rem;
  max-width: 780px;
  margin: 2.25rem auto 0;
  text-align: left;
}

.home-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 500;
  font-size: 1rem;
}

.home-list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
}

.home-list svg {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.check-circle {
  fill: var(--cream);
}

.check-mark {
  fill: none;
  stroke: var(--olive-dark);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .home-list {
    grid-template-columns: 1fr;
  }

  .home-list li:last-child:nth-child(odd) {
    max-width: none;
    margin: 0;
  }
}

/* ---------- Services ---------- */

.services-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2.5rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-icon {
  flex: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 6px 14px -6px rgba(89, 97, 58, 0.5);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
  padding-top: 0.15rem;
}

.service-item strong {
  color: var(--navy);
  font-weight: 600;
}

.script-closing {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  color: var(--olive);
  text-align: center;
  max-width: 720px;
  margin: 3rem auto 0;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact ---------- */

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .grid-two {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info > p {
  color: var(--text-muted);
  margin: 1.5rem 0 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--olive-dark);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
}

.contact-item .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-item a,
.contact-item div > span:not(.label) {
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
}

.contact-item a:hover {
  color: var(--navy);
}

.contact-form {
  background: var(--surface);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 33, 112, 0.14);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.5rem;
  text-align: center;
}

.form-status.success {
  color: var(--olive-dark);
}

.form-status.error {
  color: #a4432f;
}

.spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 250, 242, 0.4);
  border-top-color: #fffaf2;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner.show {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 2.75rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: rgba(255, 250, 242, 0.9);
}

.footer-inner > p:not(.footer-script) {
  color: rgba(255, 250, 242, 0.65);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 250, 242, 0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Hero script tagline ---------- */

.hero-script {
  margin: -1.25rem 0 2.25rem;
}

/* ---------- What Makes Us Different ---------- */

.section-why {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.diff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.diff-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.diff-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 6px 14px -6px rgba(89, 97, 58, 0.5);
}

.diff-icon svg {
  width: 27px;
  height: 27px;
}

.diff-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.diff-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Meet Our Founder ---------- */

.founder-panel {
  background: linear-gradient(160deg, var(--olive) 0%, var(--olive-dark) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  box-shadow: var(--shadow-lg);
}

.founder-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.founder-eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 250, 242, 0.8);
}

.founder-name {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-top: 0.75rem;
}

.founder-role {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1rem;
  color: rgba(255, 250, 242, 0.85);
  margin-top: 0.25rem;
}

.founder-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: rgba(255, 250, 242, 0.92);
  margin: 1.5rem auto 2rem;
  max-width: 560px;
}

.btn-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 250, 242, 0.6);
}

.btn-cream:hover {
  background: rgba(255, 250, 242, 0.12);
  border-color: var(--cream);
}

/* Honeypot field: hidden from visitors, visible to spam bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
