:root {
  --bg: #f6f1e8;
  --bg-alt: #efe4d6;
  --bg-deep: #e0d2c1;
  --ink: #3c3128;
  --ink-soft: #5a4a3d;
  --accent: #c8a37a;
  --accent-strong: #a1794f;
  --line: #ddc8b1;
  --pill: #f0e3d5;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-soft: 0 18px 40px rgba(40, 32, 24, 0.12);
  --shadow-subtle: 0 12px 26px rgba(40, 32, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink-soft);
  background-color: var(--bg);
  background-image: url('images/sand-background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center top;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0 0 16px;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.06em;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
}

h3 {
  font-size: clamp(20px, 3vw, 28px);
}

ul {
  margin: 0 0 16px 18px;
  padding: 0;
}

li {
  margin-bottom: 6px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
  outline: 2px solid var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(to bottom, rgba(246, 241, 232, 0.98), rgba(246, 241, 232, 0.86));
  border-bottom: 1px solid rgba(221, 200, 177, 0.9);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 24px rgba(42, 32, 23, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.brand-title {
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.15s ease-out;
  opacity: 0.9;
}

.nav-links a:hover {
  border-color: var(--line);
  background: rgba(239, 228, 214, 0.9);
  opacity: 1;
}

.nav-links a[aria-current="page"] {
  border-color: var(--accent);
  background: rgba(233, 212, 188, 0.5);
  opacity: 1;
}

.nav-cta {
  border: 1px solid var(--accent);
  background: linear-gradient(to right, #e9d3bc, #d9b996);
  box-shadow: 0 10px 24px rgba(96, 70, 38, 0.22);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  background: rgba(246, 241, 232, 0.9);
  border-radius: 10px;
  padding: 8px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Buttons */
.btn,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
  gap: 8px;
}

.btn {
  border-color: var(--accent);
  background: linear-gradient(to right, #e9d4bc, #d6b18a);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(84, 63, 41, 0.2);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(84, 63, 41, 0.24);
}

.btn-outline {
  border-color: var(--accent-strong);
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover {
  background: rgba(233, 212, 188, 0.4);
  box-shadow: 0 10px 24px rgba(96, 70, 38, 0.15);
}

.btn-ghost {
  border-color: rgba(221, 200, 177, 0.9);
  background: rgba(250, 245, 238, 0.6);
  color: var(--ink-soft);
}

.btn-ghost:hover {
  background: rgba(239, 228, 214, 0.7);
}

/* Sections */
.section {
  padding: 96px 0;
  position: relative;
}

.section.alt {
  background: rgba(239, 228, 214, 0.9);
}

.section.deep {
  background: rgba(224, 210, 193, 0.92);
}

.section-heading {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.section-intro {
  max-width: 680px;
  font-size: 16px;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-divider svg {
  width: 46px;
  height: 18px;
}

/* Hero */
.hero {
  padding: 120px 0 110px;
  background: linear-gradient(180deg, rgba(246, 241, 232, 0.85), rgba(246, 241, 232, 0.6)),
    url('images/spiral-of-life-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(255, 248, 237, 0.75), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.hero-subhead {
  font-size: 17px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-card {
  background: radial-gradient(circle at 12% 0%, #fff9f2, #efe4d6);
  border-radius: var(--radius-xl);
  padding: 26px;
  border: 1px solid rgba(208, 184, 154, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-card p {
  font-size: 14px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.hero-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.hero-list li::before {
  content: "\2022";
  font-size: 16px;
  line-height: 1;
  padding-top: 2px;
}

/* Cards and grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card,
.info-card,
.project-card {
  background: rgba(246, 241, 232, 0.96);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-subtle);
}

.service-card.primary {
  border-color: var(--accent);
  box-shadow: 0 18px 32px rgba(84, 63, 41, 0.16);
}

#packages .service-card p {
  margin-bottom: 10px;
}

#packages .service-card p:last-child {
  margin-bottom: 0;
}

#packages .service-card ul {
  margin: 0 0 8px 18px;
  font-size: 14px;
  line-height: 1.35;
}

#packages .service-card ul:last-child {
  margin-bottom: 0;
}

#packages .service-card li {
  margin-bottom: 4px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(233, 212, 188, 0.6);
  border: 1px solid rgba(200, 163, 122, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-strong);
}

.media-frame {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(208, 184, 154, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.tag {
  padding: 6px 12px;
  background: var(--pill);
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(241, 223, 199, 0.4), rgba(244, 235, 226, 0.6));
  box-shadow: var(--shadow-subtle);
  font-size: 16px;
}

.quote-card span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.project-card img {
  border-radius: 16px;
  margin-bottom: 14px;
}

.project-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.form-card {
  background: rgba(246, 241, 232, 0.96);
  border-radius: var(--radius-xl);
  padding: 26px;
  border: 1px solid rgba(212, 188, 160, 0.9);
  box-shadow: var(--shadow-soft);
}

.form-card label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 9px 10px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(252, 247, 240, 0.9);
  outline: none;
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(200, 163, 122, 0.5);
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.form-meta {
  font-size: 14px;
  color: var(--ink-soft);
}

.form-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(246, 241, 232, 0.94);
  padding: 16px 18px;
  box-shadow: var(--shadow-subtle);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 10px;
  font-size: 14px;
}

/* Footer */
footer {
  padding: 30px 0 36px;
  border-top: 1px solid rgba(221, 200, 177, 0.8);
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  text-decoration: none;
}

.footer-note {
  margin-top: 10px;
  font-size: 12px;
}

/* Animation */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  body {
    background-attachment: scroll;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    padding-bottom: 12px;
  }

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

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 90px 0 80px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .btn,
  .btn-outline,
  .btn-ghost {
    transition: none;
  }
}
