@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --ink: #12251a;
  --forest: #173d2d;
  --forest-deep: #0d2118;
  --sage: #a8b89a;
  --cream: #fbf8f1;
  --sand: #f1eadb;
  --gold: #e5b64c;
  --gold-light: #f8df9a;
  --cinnamon: #b8522d;
  --white: #fffdf8;
  --text: #24352b;
  --muted: #657268;
  --line: rgba(23, 61, 45, .13);
  --shadow: 0 18px 46px rgba(19, 46, 31, .11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button, input { font: inherit; }

button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--forest-deep);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(13, 33, 24, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand img { width: 42px; height: 42px; object-fit: contain; }

.brand-copy { display: grid; line-height: 1.05; }
.brand-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.22rem; letter-spacing: .01em; }
.brand-tag { color: var(--gold-light); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.site-nav a {
  color: rgba(255, 253, 248, .82);
  padding: 10px 12px;
  text-decoration: none;
  font-size: .91rem;
  font-weight: 600;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}

.site-nav a:hover, .site-nav a[aria-current='page'] { color: var(--white); background: rgba(255, 255, 255, .1); }

.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 5px;
  border: 1px solid rgba(229, 182, 76, .72);
  color: var(--gold-light) !important;
}

.nav-cart svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 9px;
  color: var(--white);
  background: transparent;
}

.nav-toggle svg { width: 22px; height: 22px; }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #10291e url('/images/Sihini-Hero.png') center/cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 24, 16, .92) 0%, rgba(8, 27, 18, .72) 45%, rgba(8, 27, 18, .24) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -7rem;
  bottom: -8rem;
  width: 28rem;
  height: 28rem;
  z-index: -1;
  border: 1px solid rgba(229, 182, 76, .33);
  border-radius: 50%;
}

.hero-content, .section-wrap, .footer-inner, .legal-wrap, .status-wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.hero-content { padding: 92px 0 108px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: var(--gold-light);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow::before { content: ''; width: 32px; height: 1px; background: currentColor; }

h1, h2, h3 { margin: 0; font-family: 'Playfair Display', Georgia, serif; line-height: 1.08; }

.hero h1 { max-width: 760px; color: var(--white); font-size: clamp(3.35rem, 8.1vw, 6.75rem); font-weight: 600; letter-spacing: -.045em; }

.hero h1 em { color: var(--gold-light); font-style: normal; }

.hero-copy { max-width: 565px; margin: 25px 0 0; color: rgba(255, 253, 248, .86); font-size: clamp(1rem, 1.8vw, 1.18rem); }

.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 33px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--forest-deep);
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(0,0,0,.19);
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover { background: #f2c95e; box-shadow: 0 16px 30px rgba(0,0,0,.25); transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button--outline { color: var(--white); background: transparent; border-color: rgba(255, 253, 248, .52); box-shadow: none; }
.button--outline:hover { color: var(--forest-deep); background: var(--white); }
.button--dark { color: var(--white); background: var(--forest); box-shadow: none; }
.button--dark:hover { background: #0d2c1d; }

.hero-points { display: flex; flex-wrap: wrap; gap: 18px 31px; margin: 46px 0 0; padding: 0; list-style: none; color: rgba(255, 253, 248, .83); font-size: .86rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points svg { width: 18px; height: 18px; color: var(--gold); }

.section { padding: 104px 0; }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest-deep); color: var(--white); }
.section--compact { padding: 72px 0; }

.section-heading { max-width: 710px; }
.section-heading h2 { color: var(--forest-deep); font-size: clamp(2.15rem, 4.5vw, 3.7rem); letter-spacing: -.035em; }
.section-heading p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); font-size: 1.05rem; }
.section--forest .section-heading h2 { color: var(--white); }
.section--forest .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.7); }

.story-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr); gap: clamp(38px, 7vw, 92px); align-items: center; }
.story-image { position: relative; min-height: 500px; overflow: hidden; border-radius: 4px 84px 4px 84px; box-shadow: var(--shadow); }
.story-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.story-image::after { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.5); border-radius: 2px 65px 2px 65px; pointer-events: none; }
.story-copy p { margin: 21px 0 0; color: var(--muted); font-size: 1.03rem; }
.story-copy .button-row { margin-top: 29px; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 21px; margin-top: 43px; }
.product-card { display: flex; flex-direction: column; min-height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: 0 10px 25px rgba(18,37,26,.06); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.product-card__image { aspect-ratio: 1.08 / 1; overflow: hidden; background: var(--sand); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-card__image img { transform: scale(1.045); }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.product-card h3 { color: var(--forest-deep); font-size: 1.48rem; }
.product-price { margin: 8px 0 0; color: var(--cinnamon); font-size: .91rem; font-weight: 700; }
.product-description { margin: 13px 0 0; color: var(--muted); font-size: .91rem; }
.product-card__actions { display: grid; grid-template-columns: 1fr 1.28fr; gap: 9px; margin-top: auto; padding-top: 23px; }
.card-button { display: inline-flex; align-items: center; justify-content: center; min-height: 43px; padding: 0 10px; border: 1px solid var(--forest); border-radius: 7px; color: var(--forest); background: transparent; font-size: .84rem; font-weight: 700; text-decoration: none; }
.card-button:hover { color: var(--white); background: var(--forest); }
.card-button--gold { border-color: var(--gold); color: var(--forest-deep); background: var(--gold); }
.card-button--gold:hover { background: #f0c759; color: var(--forest-deep); }
.card-button:disabled, .card-button[aria-disabled="true"] { cursor: not-allowed; opacity: .58; box-shadow: none; }
.card-button:disabled:hover, .card-button[aria-disabled="true"]:hover { color: var(--forest-deep); background: var(--gold); }
.product-empty { margin-top: 35px; padding: 30px; border: 1px dashed rgba(23,61,45,.35); border-radius: 12px; color: var(--muted); }
.home-cart-feedback { position: fixed; right: 24px; bottom: 24px; z-index: 100; display: flex; align-items: center; gap: 15px; max-width: min(420px, calc(100vw - 32px)); padding: 15px 17px; border: 1px solid rgba(229,182,76,.55); border-radius: 10px; color: var(--white); background: var(--forest-deep); box-shadow: 0 16px 40px rgba(0,0,0,.26); font-size: .92rem; font-weight: 600; }
.home-cart-feedback a { flex-shrink: 0; color: var(--gold-light); font-weight: 700; }
.home-cart-feedback.is-error { border-color: rgba(177,47,38,.65); background: #6c211c; }
.home-cart-feedback.is-error a { color: var(--white); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.value-card { padding: 30px 27px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: rgba(255,255,255,.055); }
.value-icon { display: grid; width: 49px; height: 49px; margin-bottom: 24px; place-items: center; border-radius: 50%; color: var(--forest-deep); background: var(--gold); }
.value-icon svg { width: 25px; height: 25px; }
.value-card h3 { color: var(--gold-light); font-size: 1.45rem; }
.value-card p { margin: 11px 0 0; color: rgba(255,255,255,.7); font-size: .94rem; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 43px; }
.quote { padding: 29px; border-radius: 13px; background: var(--white); box-shadow: 0 10px 24px rgba(18,37,26,.055); }
.quote-mark { color: var(--gold); font-family: Georgia, serif; font-size: 3.3rem; line-height: .7; }
.quote p { margin: 17px 0 0; color: #435248; }
.quote footer { display: flex; align-items: center; gap: 11px; margin-top: 21px; color: var(--forest); font-size: .86rem; font-weight: 700; }
.quote footer::before { content: ''; width: 27px; height: 1px; background: var(--gold); }

.newsletter { display: grid; grid-template-columns: 1fr minmax(310px, .78fr); gap: 45px; align-items: center; padding: 52px; border-radius: 16px; color: var(--white); background: linear-gradient(112deg, #123624, #275d41); box-shadow: 0 18px 45px rgba(18, 57, 37, .2); }
.newsletter h2 { color: var(--gold-light); font-size: clamp(2rem, 3.5vw, 3rem); }
.newsletter p { margin: 15px 0 0; color: rgba(255,255,255,.75); }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.newsletter-form input { width: 100%; min-width: 0; height: 51px; padding: 0 15px; border: 1px solid rgba(255,255,255,.35); border-radius: 8px; color: var(--white); background: rgba(0,0,0,.15); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.64); }
.newsletter-form .button { flex-shrink: 0; }

.site-footer { color: rgba(255,255,255,.72); background: #0b1a13; }
.footer-inner { padding: 58px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr .75fr .95fr; gap: 48px; }
.footer-brand { max-width: 350px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { margin: 0; font-size: .92rem; }
.footer-links h2, .footer-contact h2 { margin-bottom: 15px; color: var(--gold-light); font-family: 'DM Sans', Arial, sans-serif; font-size: .77rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.7); font-size: .91rem; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { margin: 0 0 10px; font-size: .91rem; }
.social-links { display: flex; gap: 9px; margin-top: 18px; }
.social-links a { display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); }
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.social-links svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.46); font-size: .78rem; }

.page-hero { padding: 77px 0 81px; color: var(--white); background: linear-gradient(112deg, #102a1d, #245238); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { max-width: 760px; font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -.04em; }
.page-hero p:not(.eyebrow) { max-width: 600px; margin: 18px 0 0; color: rgba(255,255,255,.76); font-size: 1.08rem; }

.story-feature { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 7vw, 86px); align-items: center; }
.story-feature__image { min-height: 560px; overflow: hidden; border-radius: 5px 75px 5px 75px; background: var(--sand); }
.story-feature__image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.prose p { margin: 0 0 17px; color: var(--muted); font-size: 1rem; }
.prose p:first-child { color: var(--forest); font-size: 1.15rem; }
.prose strong { color: var(--forest); }
.signature { display: block; margin-top: 28px; color: var(--cinnamon); font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 43px; }
.process-card { padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.process-number { display: block; margin-bottom: 28px; color: var(--cinnamon); font-size: .75rem; font-weight: 700; letter-spacing: .13em; }
.process-card h3 { color: var(--forest-deep); font-size: 1.55rem; }
.process-card p { margin: 12px 0 0; color: var(--muted); font-size: .92rem; }

.legal-wrap { max-width: 900px; padding: 74px 0 96px; }
.legal-card { padding: clamp(27px, 5vw, 57px); border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
.legal-card .updated { margin: 14px 0 37px; color: var(--cinnamon); font-size: .89rem; font-weight: 700; }
.legal-card h2 { margin: 38px 0 13px; color: var(--forest-deep); font-size: clamp(1.5rem, 3vw, 2rem); }
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card p, .legal-card li { color: #546158; }
.legal-card p { margin: 0 0 15px; }
.legal-card ul { margin: 0 0 17px; padding-left: 22px; }
.legal-card li + li { margin-top: 8px; }
.legal-card a { color: var(--cinnamon); font-weight: 700; }
.legal-contact { margin-top: 34px; padding: 21px; border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; background: var(--sand); }

.status-page { min-height: 100vh; display: grid; place-items: center; padding: 32px 0; background: radial-gradient(circle at 82% 15%, rgba(229,182,76,.19), transparent 26rem), var(--forest-deep); }
.status-card { max-width: 620px; padding: clamp(32px, 6vw, 65px); text-align: center; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; color: var(--white); background: rgba(255,255,255,.06); box-shadow: 0 23px 60px rgba(0,0,0,.28); }
.status-logo { width: 72px; height: 72px; margin: 0 auto 26px; object-fit: contain; }
.status-icon { display: grid; width: 49px; height: 49px; margin: 0 auto 20px; place-items: center; border-radius: 50%; color: var(--forest-deep); background: var(--gold); }
.status-icon svg { width: 25px; height: 25px; }
.status-card h1 { color: var(--gold-light); font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -.04em; }
.status-card p { margin: 16px auto 0; max-width: 440px; color: rgba(255,255,255,.75); font-size: 1.05rem; }
.status-card .button { margin-top: 31px; }

@media (max-width: 850px) {
  .product-grid, .quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter { grid-template-columns: 1fr; gap: 26px; }
  .footer-top { grid-template-columns: 1.2fr .8fr; }
  .footer-contact { grid-column: 1 / -1; }
  .story-grid, .story-feature { grid-template-columns: 1fr; }
  .story-image, .story-image img, .story-feature__image, .story-feature__image img { min-height: 410px; }
}

@media (max-width: 650px) {
  .header-inner, .hero-content, .section-wrap, .footer-inner, .legal-wrap, .status-wrap { width: min(100% - 30px, 1180px); }
  .header-inner { min-height: 66px; }
  .brand img { width: 37px; height: 37px; }
  .brand-name { font-size: 1.07rem; }
  .brand-tag { font-size: .57rem; }
  .nav-toggle { display: grid; place-items: center; }
  .site-nav { position: fixed; inset: 66px 0 auto; display: grid; justify-content: stretch; gap: 2px; max-height: 0; padding: 0 15px; overflow: hidden; background: var(--forest-deep); border-bottom: 0 solid rgba(255,255,255,.12); transition: max-height .25s ease, padding .25s ease, border .25s ease; }
  .site-nav.is-open { max-height: 360px; padding: 13px 15px 18px; border-bottom-width: 1px; }
  .site-nav a { padding: 12px; }
  .nav-cart { margin: 6px 0 0; justify-content: center; }
  .hero { min-height: 680px; }
  .hero::before { background: linear-gradient(90deg, rgba(7,24,16,.9), rgba(8,27,18,.59)); }
  .hero-content { padding: 76px 0; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .hero-points { display: grid; gap: 11px; margin-top: 35px; }
  .section { padding: 73px 0; }
  .section--compact { padding: 56px 0; }
  .product-grid, .quote-grid, .value-grid, .process-grid { grid-template-columns: 1fr; }
  .product-grid { gap: 16px; }
  .product-card__image { aspect-ratio: 1.35 / 1; }
  .home-cart-feedback { right: 15px; bottom: 15px; left: 15px; max-width: none; }
  .newsletter { padding: 30px 23px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; margin-top: 35px; }
  .page-hero { padding: 61px 0; }
  .legal-wrap { padding: 43px 0 63px; }
  .legal-card { border-radius: 10px; }
  .story-image, .story-image img, .story-feature__image, .story-feature__image img { min-height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
