:root {
  --bg: #f8f3ed;
  --bg-soft: #f1e7dc;
  --surface: rgba(255, 250, 245, 0.78);
  --surface-strong: #fffaf5;
  --text: #241914;
  --text-soft: #6c564b;
  --line: rgba(54, 30, 18, 0.12);
  --primary: #c96e2e;
  --primary-dark: #a4521d;
  --accent: #e7b089;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(49, 29, 18, 0.10);
  --shadow-soft: 0 10px 30px rgba(49, 29, 18, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1200px;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(231, 176, 137, 0.28), transparent 32%),
    linear-gradient(180deg, #fbf7f2 0%, #f7f1ea 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: var(--text);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 243, 237, 0.72);
  border-bottom: 1px solid rgba(54, 30, 18, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  position: relative;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(54, 30, 18, 0.06);
  background: rgba(248, 243, 237, 0.96);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(54, 30, 18, 0.06);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 14, 10, 0.72) 0%, rgba(24, 14, 10, 0.40) 45%, rgba(24, 14, 10, 0.25) 100%),
    linear-gradient(180deg, rgba(201, 110, 46, 0.12), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  color: #fffaf6;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.feature-text h2,
.contact-copy h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
  margin: 0 0 24px;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 58ch;
  color: rgba(255, 245, 238, 0.92);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-note span {
  border: 1px solid rgba(255, 250, 245, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 243, 0.92);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.25s ease;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-secondary {
  border-color: rgba(255, 250, 245, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.full-width {
  width: 100%;
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.centered {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.feature-text h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin: 0;
}

.intro-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: start;
}

.intro-text p,
.feature-text p,
.contact-copy p,
.experience-copy p,
.card p {
  color: var(--text-soft);
  font-size: 1.03rem;
}

.pillars {
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.48));
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  min-height: 280px;
}

.card-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: var(--primary);
  font-weight: 700;
}

.card h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.feature-band {
  background:
    linear-gradient(120deg, rgba(201, 110, 46, 0.08), rgba(255, 255, 255, 0.4)),
    var(--bg-soft);
}

.feature-panel {
  background: rgba(255, 251, 247, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.feature-item + .feature-item {
  border-top: 1px solid rgba(54, 30, 18, 0.08);
  margin-top: 18px;
  padding-top: 18px;
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.feature-item span {
  color: var(--text-soft);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.experience-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.experience-gallery img {
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.quote-block {
  padding-top: 40px;
  padding-bottom: 40px;
}

.quote-block blockquote {
  margin: 0;
  padding: 38px 42px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201, 110, 46, 0.12), rgba(255, 255, 255, 0.7));
  border: 1px solid var(--line);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  box-shadow: var(--shadow-soft);
}

.contact {
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.45));
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-details strong {
  display: block;
  margin-bottom: 4px;
}

.contact-details span {
  color: var(--text-soft);
}

.contact-form {
  background: rgba(255, 251, 247, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(54, 30, 18, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.72);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(201, 110, 46, 0.65);
  box-shadow: 0 0 0 4px rgba(201, 110, 46, 0.12);
  background: #fff;
}

.form-status {
  margin-top: 14px;
  min-height: 24px;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid rgba(54, 30, 18, 0.08);
  padding: 26px 0;
  background: rgba(255, 250, 245, 0.65);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

.delay-4 {
  transition-delay: 0.42s;
}

@media (max-width: 1024px) {
  .pillars-grid,
  .experience-grid,
  .intro-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .experience-gallery img {
    height: 320px;
  }
}

@media (max-width: 820px) {
  .nav-list {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.4rem);
  }

  .section {
    padding: 84px 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .experience-gallery {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .brand-text small {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .card,
  .contact-form,
  .feature-panel,
  .quote-block blockquote {
    padding: 24px;
  }

  .section-heading h2,
  .feature-text h2,
  .contact-copy h2 {
    line-height: 0.98;
  }
}