:root {
  --bg: #f4efe6;
  --bg-deep: #e8dfd2;
  --ink: #2a221c;
  --muted: #6b5f54;
  --accent: #8c4a3a;
  --accent-soft: #a85f4d;
  --cream: #fffdf9;
  --radius: 1.25rem;
  --radius-pill: 999px;
  --shadow: 0 20px 50px rgba(140, 74, 58, 0.1);
  --font-display: "Literata", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overscroll-behavior-y: none;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(140, 74, 58, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-text small {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.header-cta {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 18ch;
}

.hero {
  display: grid;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) 3rem;
  align-items: center;
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-ghost {
  border-color: rgba(140, 74, 58, 0.35);
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(140, 74, 58, 0.08);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  align-items: end;
}

.hero-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.hero-frame--tall {
  aspect-ratio: 3 / 4;
  grid-row: span 2;
}

.hero-frame--wide {
  aspect-ratio: 4 / 3;
}

.occasions {
  padding: 3rem clamp(1rem, 4vw, 2rem) 4rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 2rem;
}

.section-head p:last-child {
  margin: 0;
  max-width: 50ch;
  color: var(--muted);
}

.occasion-grid {
  display: grid;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.occasion-card {
  background: var(--cream);
  border-radius: calc(var(--radius) + 0.25rem);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.occasion-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.occasion-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.occasion-body h3 {
  font-size: 1.35rem;
}

.occasion-body p {
  margin: 0;
  color: var(--muted);
}

.process {
  padding: 3.5rem clamp(1rem, 4vw, 2rem);
}

.process-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(140, 74, 58, 0.12);
}

.step-num {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.process-steps h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.trust {
  padding: 2rem clamp(1rem, 4vw, 2rem) 3.5rem;
}

.trust-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--accent);
  color: #fdf6f2;
  border-radius: calc(var(--radius) + 0.5rem);
  box-shadow: var(--shadow);
}

.trust-panel .kicker {
  color: rgba(255, 255, 255, 0.75);
}

.trust-panel h2 {
  max-width: 22ch;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.trust-panel p {
  margin: 0 0 1rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
}

.trust-panel footer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  display: grid;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) 5rem;
}

.contact-copy p {
  color: var(--muted);
  max-width: 48ch;
}

.contact-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-grid a,
.contact-hours {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(140, 74, 58, 0.1);
}

.contact-grid span {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.contact-grid strong {
  font-size: 1.05rem;
}

.map-panel {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.map-link {
  display: block;
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  background: var(--cream);
}

.site-footer {
  padding: 1.5rem clamp(1rem, 4vw, 2rem) 5.5rem;
  border-top: 1px solid rgba(140, 74, 58, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
}

.site-footer span {
  display: block;
}

.site-footer a {
  color: var(--accent);
}

.mobile-action {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0.5rem;
  background: rgba(244, 239, 230, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(140, 74, 58, 0.15);
}

.mobile-action a {
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-action a:first-child {
  background: transparent;
  color: var(--accent);
  border: 2px solid rgba(140, 74, 58, 0.3);
}

.mobile-action a:last-child {
  background: var(--accent);
  color: #fff;
}

@media (min-width: 640px) {
  .nav-links {
    display: flex;
  }

  .occasion-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .occasion-card img {
    aspect-ratio: 3 / 4;
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-panel iframe {
    height: 320px;
  }

  .mobile-action {
    display: none;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .process-inner {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .contact-section {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
