:root {
  --cream: #F5F0E8;
  --ink: #1a1f2e;
  --sage: #6b7b6a;
  --terracotta: #b87252;
  --sand: #e2dcd2;
  --white: #fff;
  --off-white: #FAF9F7;
  --charcoal: #1a1f2e;
  --forest: #6b7b6a;
  --blush: #d4a89a;
  --gold: #b87252;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 2.5rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 50%;
  --shadow-sm: 0 1px 3px rgba(44, 44, 44, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 44, 44, 0.1);
  --shadow-lg: 0 8px 24px rgba(44, 44, 44, 0.12);
  --transition: 0.25s ease;
  --header-h: 2.85rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--charcoal);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 var(--space-md);
}

h1 { font-size: clamp(1.25rem, 3.2vw, 1.75rem); }
h2 { font-size: clamp(1.1rem, 2.6vw, 1.45rem); }
h3 { font-size: clamp(1.05rem, 2.2vw, 1.25rem); }
h4, h5, h6 { font-size: clamp(0.95rem, 1.8vw, 1.1rem); }

p {
  margin: 0 0 var(--space-md);
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.site-header {
  position: relative;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-md);
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 72rem;
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.logo a {
  color: inherit;
}

.logo a:hover {
  color: var(--forest);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}

.nav-menu a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-sm);
  cursor: pointer;
  color: var(--charcoal);
  font-size: 1.25rem;
  z-index: 22;
  position: relative;
}

body.menu-open .menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 18rem;
  height: 100vh;
  background: var(--cream);
  z-index: 21;
  padding: calc(var(--header-h) + var(--space-xl)) var(--space-xl) var(--space-xl);
  transform: translateY(-100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu .nav-menu a {
  font-size: var(--text-base);
  color: var(--ink);
}

.menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  padding: var(--space-sm);
  cursor: pointer;
  color: var(--charcoal);
  font-size: 1.5rem;
  z-index: 22;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  background-image: url('../pictures/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--charcoal);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(245, 240, 232, 0.88) 0%, rgba(212, 168, 154, 0.5) 60%, rgba(184, 114, 82, 0.25) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(245, 240, 232, 0.92);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 36rem;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.hero h1 {
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 2px rgba(250, 249, 247, 0.8);
}

.hero .subhead {
  font-size: clamp(var(--text-sm), 2vw, var(--text-lg));
  margin-bottom: var(--space-xl);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-lg);
}

.hero-figure {
  position: absolute;
  width: 5.5rem;
  height: 5.5rem;
  border: 2px solid var(--terracotta);
  border-radius: var(--radius-full);
  bottom: 18%;
  right: 12%;
  opacity: 0.85;
  animation: float 5s ease-in-out infinite;
}

.hero-figure::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--terracotta);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
  opacity: 0.75;
  animation: pulse 2.5s ease-in-out infinite;
}

.hero-figure::after {
  content: '';
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  width: 1rem;
  height: 1rem;
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-full);
  opacity: 0.8;
  animation: drift 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-0.6rem) rotate(3deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.45; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.8; }
  50% { transform: translate(0.25rem, -0.25rem); opacity: 0.5; }
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  margin-top: var(--space-md);
}

.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
}

.btn-outline:hover {
  background: var(--blush);
  color: var(--charcoal);
  border-color: var(--blush);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  margin-bottom: var(--space-sm);
}

.intro-block {
  max-width: 40rem;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: var(--space-xl);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.card-icon-wrap {
  width: 100%;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
  color: var(--sage);
  font-size: 2.5rem;
}

.card-icon-wrap-large {
  width: 100%;
  min-height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
  color: var(--sage);
  font-size: 3.5rem;
  border-radius: var(--radius-lg);
}

.card-body {
  padding: var(--space-lg);
}

.card-body h3 {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  margin-bottom: var(--space-sm);
}

.card-body p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.occasions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-lg);
}

.occasions-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.occasions-list .icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background: var(--sand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: var(--space-xl);
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto var(--space-md);
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 2.25rem;
  font-size: var(--text-base);
}

.process-step h3 {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

.voice-block {
  text-align: center;
  padding: var(--space-2xl);
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--terracotta);
}

.voice-block p {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.voice-block .voice-label {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: var(--space-sm);
}

.cta-section {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: var(--ink);
  color: var(--cream);
}

.cta-section h2 {
  color: inherit;
  margin-bottom: var(--space-md);
}

.cta-section p {
  margin-bottom: var(--space-xl);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
}

.cta-section .btn:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.contact-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.contact-teaser .text h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  margin-bottom: var(--space-md);
}

.contact-teaser .btn {
  margin-top: var(--space-sm);
}

.contact-teaser .map-wrap {
  min-width: 0;
}

.find-us-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 50%, var(--cream) 100%);
  padding: var(--space-3xl) 0;
}

.find-us-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
}

.find-us-content {
  padding: var(--space-2xl);
}

.find-us-content h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  margin-bottom: var(--space-md);
  color: var(--ink);
  position: relative;
  padding-bottom: var(--space-sm);
}

.find-us-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--terracotta);
}

.find-us-content p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  color: var(--charcoal);
  line-height: 1.6;
}

.find-us-content .btn {
  margin-top: 0;
}

.find-us-map {
  min-width: 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  overflow: hidden;
}

.find-us-map iframe {
  width: 100%;
  height: 480px;
  display: block;
  border: 0;
}

@media (max-width: 48rem) {
  .contact-teaser {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-teaser .card-icon-wrap-large {
    min-height: 12rem;
    font-size: 2.75rem;
  }

  .find-us-inner {
    grid-template-columns: 1fr;
  }

  .find-us-content {
    text-align: center;
    padding: var(--space-xl);
  }

  .find-us-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .find-us-map {
    border-radius: 0;
  }

  .find-us-map iframe {
    height: 320px;
  }
}

.site-footer {
  margin-top: auto;
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--ink);
  color: var(--cream);
}

.site-footer a {
  color: var(--sand);
}

.site-footer a:hover {
  color: var(--terracotta);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-lg);
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: var(--text-sm);
}

.footer-meta {
  font-size: var(--text-xs);
  opacity: 0.9;
}

.page-hero {
  padding: var(--space-2xl) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

.page-hero h1 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.product-card .card-body {
  padding: var(--space-lg);
}

.product-card .price {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 600;
  color: var(--sage);
  margin-top: var(--space-sm);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info-block {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info-block h3 {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  margin-bottom: var(--space-md);
}

.contact-form-wrap {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input {
  width: auto;
  margin-top: 0.2rem;
}

.form-checkbox label {
  font-size: var(--text-sm);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-lg);
}

.map-wrap iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

@media (max-width: 48rem) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.thank-you-page,
.error-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  text-align: center;
}

.thank-you-page .container,
.error-page .container {
  max-width: none;
}

.thank-you-page p,
.error-page p {
  max-width: none;
  margin-bottom: var(--space-lg);
}

.legal-page {
  padding: var(--space-2xl) 0;
}

.legal-page .container {
  max-width: 52rem;
}

.legal-page h1 {
  font-size: clamp(1.15rem, 2.8vw, 1.4rem);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--sand);
  padding-bottom: var(--space-md);
}

.legal-page h2 {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-page h3 {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  margin-top: var(--space-lg);
}

.legal-page p,
.legal-page li {
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.legal-page ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-page .table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.legal-page th,
.legal-page td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--sand);
}

.legal-page th {
  background: var(--cream);
  font-weight: 600;
}

.legal-page .home-button {
  display: inline-block;
  margin-top: var(--space-xl);
  padding: var(--space-sm) var(--space-lg);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

.legal-page .home-button:hover {
  background: var(--terracotta);
  color: var(--white);
}

.consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-lg);
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.consent-popup.show {
  transform: translateY(0);
}

.consent-popup p {
  margin: 0 0 var(--space-md);
  font-size: var(--text-sm);
}

.consent-popup .btn {
  margin-top: 0;
  margin-right: var(--space-sm);
}

@media (max-width: 64rem) {
  .site-header .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (min-width: 64.01rem) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 20rem) {
  .container {
    padding: 0 var(--space-md);
  }

  html {
    font-size: 95%;
  }
}
