@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --background: #FAF7F2;
  --foreground: #2C1A0E;
  --card: #FFFFFF;
  --primary: #C8860A;
  --primary-foreground: #FFFFFF;
  --secondary: #1A5C35;
  --muted: #F0EBE3;
  --muted-foreground: #8B6A4A;
  --accent: #7C3E0E;
  --border: #E8DDD0;
  --radius: 0.75rem;
  --saffron: #2D1B69;
  --saffron-banner: #4A1D96;
  --sesame: #1B4D2E;
  --sesame-mid: #2D6A4F;
  --font: 'Inter', system-ui, sans-serif;
  --max: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

button.btn {
  -webkit-appearance: none;
  appearance: none;
}

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

@media (min-width: 1024px) {
  .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* Typography */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow--muted {
  color: var(--muted-foreground);
  letter-spacing: 0.2em;
  font-weight: 500;
}

.heading-xl {
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--accent);
  margin: 0;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--accent);
  margin: 0;
}

.heading-md {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent);
  margin: 0;
}

.lead {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin: 0;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s, background 0.2s, filter 0.2s;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.92;
  box-shadow: 0 8px 24px rgba(124, 62, 14, 0.15);
}

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

.btn--outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn--outline:hover {
  background: #fff;
}

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

.btn--outline-saffron {
  background: transparent;
  border: 1px solid var(--saffron);
  color: var(--saffron);
}

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

.btn--outline-sesame {
  background: transparent;
  border: 1px solid var(--sesame);
  color: var(--sesame);
}

.btn--gold {
  background: #C8A040;
  color: #1a0a3a;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.25rem;
}

/* Tags */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  color: var(--accent);
}

.tag--card {
  background: var(--card);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding-top: 0.5rem;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 50;
}

@media (min-width: 1024px) {
  .site-nav {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.nav-logo {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-logo img {
  height: 56px;
  width: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--foreground);
  text-decoration: none;
  padding: 0;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link.is-active {
  color: var(--primary);
}

.nav-link__label {
  padding-bottom: 2px;
}

.nav-link--apricot .nav-link__label {
  border-bottom: 2px solid #C8860A;
}

.nav-link--saffron .nav-link__label {
  border-bottom: 2px solid #2D1B69;
}

.nav-link--sesame .nav-link__label {
  border-bottom: 2px solid #1B4D2E;
}

.nav-thumb {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid #C8860A;
}

.nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-thumb--saffron {
  border-color: #2D1B69;
}

.nav-thumb--sesame {
  border-color: #1B4D2E;
  background: #F0EBE0;
  color: #1B4D2E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.nav-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--foreground);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  padding: 5rem 1.5rem 2rem;
  background: var(--background);
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a,
.mobile-menu button {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

/* Sub-nav pills — sticks to top of viewport on scroll */
.subnav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 0.75rem 0;
  background: var(--background);
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.2s ease;
}

.subnav.is-stuck,
.subnav.is-fixed {
  box-shadow: 0 4px 16px rgba(44, 26, 14, 0.08);
  border-bottom: 1px solid var(--border);
}

/* Fallback when a parent breaks sticky (common in WP themes) */
.subnav.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

body.admin-bar .subnav {
  top: 32px;
}

body.admin-bar .subnav.is-fixed {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .subnav {
    top: 46px;
  }

  body.admin-bar .subnav.is-fixed {
    top: 46px;
  }
}

.subnav-spacer {
  display: none;
  width: 100%;
}

.subnav-spacer.is-active {
  display: block;
}

.subnav__inner {
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
}

.subnav__pills {
  display: inline-flex;
  gap: 0.25rem;
  border-radius: 1rem;
  padding: 0.375rem;
  border: 1px solid var(--border);
  background: var(--card);
  flex-wrap: wrap;
  justify-content: center;
}

.subnav__pills a,
.subnav__pills button {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.subnav__pills a:hover,
.subnav__pills button:hover {
  background: #fff;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--sm {
  padding: 2rem 0;
}

.section--muted {
  background: var(--muted);
}

.section--white {
  background: #fff;
}

.grid-2 {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stack-sm {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.text-center {
  text-align: center;
}

/* Hero */
.hero {
  padding: 1rem 0 4rem;
}

.hero__media {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 50% 50% 1rem 1rem / 60% 60% 1rem 1rem;
  height: 360px;
  box-shadow: 0 24px 60px rgba(124, 62, 14, 0.15);
}

@media (min-width: 1024px) {
  .hero__media {
    margin-right: 0;
  }
}

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

.hero__media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(250, 247, 242, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.sun-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sun-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

/* Features bar */
.features {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
  padding: 0.5rem 0;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
}

@media (min-width: 1024px) {
  .feature:not(:last-child) {
    border-right: 1px solid var(--border);
  }
}

.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.feature__desc {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
}

/* Media cards */
.media-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #F5F0E8;
}

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

.media-card--tall {
  position: relative;
  height: 460px;
}

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

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 92, 53, 0.5) 0%, transparent 60%);
}

.media-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
  font-style: italic;
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Products */
.products-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(124, 62, 14, 0.1);
  transform: translateY(-2px);
}

.product-card__img {
  background: #fff;
  height: 280px;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
}

.badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--primary);
  color: #fff;
}

.product-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

/* Map panel */
.map-panel {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  display: grid;
  min-height: 320px;
}

@media (min-width: 1024px) {
  .map-panel {
    grid-template-columns: 320px 1fr;
  }
}

.map-panel__text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.map-panel__map {
  background: #EDE6D6;
  min-height: 240px;
}

.map-panel__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Offer */
.offer {
  border-radius: 1rem;
  overflow: hidden;
  display: grid;
  min-height: 420px;
  background: #1E4A2A;
}

@media (min-width: 900px) {
  .offer {
    grid-template-columns: 60% 40%;
  }
}

.offer__content {
  position: relative;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #1E4A2A;
  color: #fff;
}

@media (min-width: 1024px) {
  .offer__content {
    padding: 3rem;
  }
}

.offer__content h2 {
  color: #fff;
  margin: 0;
}

.offer__content h2 span {
  color: var(--primary);
}

.offer__deco {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.2;
  pointer-events: none;
}

.offer__media {
  position: relative;
  min-height: 360px;
  background: #173D22;
}

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

.offer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offer__badge-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
}

.offer__badge-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Contact */
.contact-card {
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-row a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.contact-row a:hover {
  text-decoration: underline;
}

.contact-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-row--address {
  align-items: flex-start;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.contact-row--address span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-row--address svg {
  color: var(--muted-foreground);
  margin-top: 2px;
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  background: #582400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .site-footer {
    flex-direction: row;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.site-footer img {
  height: 70px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.site-footer p {
  margin: auto !important;
  display: flex;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Feature cards (saffron/sesame) */
.card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  border-radius: 1rem;
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.info-card p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.check-list .check {
  font-weight: 700;
  color: var(--primary);
}

/* Spec table */
.spec-table {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  background: var(--card);
}

.spec-row + .spec-row {
  border-top: 1px solid var(--border);
}

.spec-row span:first-child {
  color: var(--muted-foreground);
}

.spec-row span:last-child {
  font-weight: 600;
}

/* Origin badge */
.origin-badge {
  position: absolute;
  bottom: 1rem;
  left: -18px;
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #F5D06A;
  background: var(--saffron);
  z-index: 2;
}

.origin-badge p {
  margin: 0;
}

.origin-badge__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #F5D06A;
  margin-bottom: 0.25rem !important;
}

.origin-badge__value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.origin-badge--sesame {
  left: 1rem;
  background: var(--sesame);
  border-color: #C8860A;
}

.origin-badge--sesame .origin-badge__label {
  color: #C8860A;
}

.rounded-media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.rounded-media--h460 {
  height: 460px;
}

.rounded-media--h460 img,
.rounded-media--h480 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rounded-media--h480 {
  height: 480px;
}

.rounded-media--border {
  border: 1px solid var(--border);
}

/* CTA banners */
.cta-banner {
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .cta-banner {
    flex-direction: row;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.cta-banner--saffron {
  background: linear-gradient(to right, #2E0F6B, #5C2A92);
}

.cta-banner--sesame {
  background: linear-gradient(to right, var(--sesame), var(--sesame-mid));
}

.cta-banner h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}

.cta-banner .eyebrow {
  color: #F5D06A;
}

.cta-banner--sesame .eyebrow {
  color: #C8860A;
}

.cta-banner p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 42rem;
}

/* Contact strip */
.contact-strip {
  padding: 3.5rem 0;
  background: #fff;
}

.contact-strip__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .contact-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

.contact-strip h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.25rem 0;
}

.contact-strip p,
.contact-strip a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.contact-strip a {
  color: var(--primary);
}

.contact-strip a:hover {
  text-decoration: underline;
}

.contact-strip .label {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Sesame sizes */
.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.size-card {
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--card);
}

.size-card p:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sesame);
  margin: 0 0 0.25rem;
}

.size-card p:last-child {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.map-header {
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sesame);
}

.map-body {
  height: 240px;
}

.map-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-notes {
  padding: 1.25rem;
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-item {
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
}

.app-item p:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sesame);
  margin: 0 0 0.125rem;
}

.app-item p:last-child {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.cert-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--card);
}

.cert-grid .icon {
  font-size: 1.75rem;
}

.cert-grid p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sesame);
  white-space: pre-line;
  margin: 0.5rem 0 0;
}

.cert-note {
  font-size: 0.75rem;
  text-align: center;
  font-style: italic;
  color: var(--muted-foreground);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem 0;
  margin: 0 1.5rem;
}

.cert-body {
  padding: 0 1.5rem 1.5rem;
  background: var(--card);
}

.cert-body h4 {
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  color: var(--sesame);
  margin: 1rem 0 0.375rem;
}

.bottom-bar {
  padding: 1rem 1.5rem;
  background: #132B1A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .bottom-bar {
    flex-direction: row;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.bottom-bar p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Theme helpers */
.theme-saffron .heading-xl,
.theme-saffron .heading-lg,
.theme-saffron .heading-md,
.theme-saffron .info-card h3,
.theme-saffron .spec-row span:last-child,
.theme-saffron .contact-strip h3,
.theme-saffron .contact-strip .label {
  color: var(--saffron);
}

.theme-saffron .info-card__icon {
  border: 1.5px solid var(--saffron);
  color: var(--saffron);
}

.theme-saffron .tag {
  border-color: #C4B5D8;
  color: var(--saffron);
}

.theme-sesame .heading-xl,
.theme-sesame .heading-lg,
.theme-sesame .heading-md,
.theme-sesame .info-card h3,
.theme-sesame .spec-row span:last-child,
.theme-sesame .contact-strip h3,
.theme-sesame .contact-strip .label,
.theme-sesame .check-list .check {
  color: var(--sesame);
}

.theme-sesame .info-card__icon {
  border: 1.5px solid var(--sesame);
  color: var(--sesame);
}

.theme-sesame .tag {
  border-color: #A8C5B0;
  color: var(--sesame);
}

.theme-sesame .contact-strip a {
  color: #C8860A;
}

.page-title-accent {
  color: var(--saffron);
}

.page-title-sesame {
  color: var(--sesame);
}

.motto {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin: 0;
}

.relative {
  position: relative;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-section {
  margin-top: 3.5rem;
}

/* ── Quote modal ── */
.soa-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.soa-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.soa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 16, 8, 0.55);
}

.soa-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(44, 26, 14, 0.2);
}

.soa-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted-foreground);
  cursor: pointer;
}

.soa-modal__close:hover {
  color: var(--accent);
}

.soa-modal__title {
  margin: 0 2rem 0.35rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.soa-modal__sub {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.soa-quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.soa-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.85rem 1.15rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--foreground);
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.soa-input::placeholder {
  color: #a89078;
}

.soa-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.18);
}

.soa-field__hint {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted-foreground);
}

.soa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.soa-chip {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--accent);
  border-radius: 9999px;
  padding: 0.55rem 1rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.soa-chip:hover {
  border-color: var(--primary);
}

.soa-chip.is-selected,
.soa-chip[aria-pressed="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.soa-submit {
  width: 100%;
  margin-top: 0.35rem;
  border: none;
}

.soa-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.soa-form-msg {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  border-radius: 0.75rem;
  padding: 0.65rem 0.85rem;
}

.soa-form-msg.is-error {
  background: #fdecea;
  color: #9b1c1c;
}

.soa-form-msg.is-ok {
  background: #e8f5ee;
  color: #1a5c35;
}

/* Contact css */

/* Contact page */

.page-contact .heading-display,
.page-content--contact .heading-display {
  color: var(--accent);
}

.contact-hero {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-hero {
    padding: 4rem 4rem 2rem;
  }
}

.contact-hero p {
  margin: 1rem auto 0;
  max-width: 32rem;
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    padding: 0 4rem 5rem;
    align-items: start;
  }
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: box-shadow 0.2s;
}

.contact-info-card:hover {
  box-shadow: 0 4px 20px rgba(124, 62, 14, 0.06);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.contact-info-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.contact-info-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin: 0 0 0.25rem;
}

.contact-info-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0;
}

.contact-info-value a {
  color: var(--primary);
}

.contact-info-value a:hover {
  text-decoration: underline;
}

.contact-inquiry-types {
  margin-top: 0.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: var(--muted);
}

.contact-inquiry-types h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1rem;
}

.contact-inquiry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-inquiry-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.625rem;
}

.contact-inquiry-list li:last-child {
  margin-bottom: 0;
}

.contact-inquiry-list li span {
  color: var(--primary);
  font-weight: 700;
}

/* Form */

.contact-form-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
}

.contact-form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.contact-form-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0 0 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--foreground);
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.12);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238B6A4A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.5;
}

/* Map / address banner */

.contact-map-section {
  padding: 0 1.5rem 5rem;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-map-section {
    padding: 0 4rem 5rem;
  }
}

.contact-map-card {
  display: grid;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--card);
  min-height: 280px;
}

@media (min-width: 768px) {
  .contact-map-card {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-map-text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.contact-map-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.contact-map-frame {
  min-height: 280px;
  background-color: var(--muted);
}

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

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-top: 0.5rem;
}

.contact-map-link:hover {
  text-decoration: underline;
}

