/* Tehoia Gorcha — tehoiagorcha.shop
   Self-hosted styles, no external fonts/CDN. */

:root {
  --navy: #1B2A41;
  --navy-2: #2E4059;
  --navy-3: #33465F;
  --cream: #FAF6EE;
  --cream-2: #F1EBDD;
  --tan: #E4D8C0;
  --tan-2: #DCCFB2;
  --border: #E4D8C0;
  --border-2: #D8CBAE;
  --muted: #6B6552;
  --muted-2: #8B7F5E;
  --muted-navy: #8B92A6;
  --muted-navy-2: #B9AF95;
  --ink: #3A4457;
  --cream-soft: #DCD4C2;
  --cream-soft-2: #C8BFA8;
  --white: #FFFFFF;
  --font-serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', P052, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius: 14px;
  --radius-lg: 18px;
  --pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: #4A5C78; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-sans); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 48px; }
.container-med { max-width: 1000px; margin: 0 auto; padding: 0 48px; }
.container-blog { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

@media (max-width: 640px) {
  .container, .container-narrow, .container-med, .container-blog { padding: 0 20px; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-name { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--navy); }
.brand-domain { font-size: 11px; color: var(--muted-2); letter-spacing: 0.08em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.main-nav a {
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
}
.main-nav a.active { border-bottom-color: var(--navy); font-weight: 700; }

.nav-toggle { display: none; }

.cart-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--pill);
  background: var(--navy); color: var(--cream);
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
}
.cart-count {
  background: var(--tan); color: var(--navy); border-radius: var(--pill);
  min-width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; padding: 0 6px;
}

@media (max-width: 900px) {
  .site-header { padding: 16px 20px; }
  .main-nav { display: none; width: 100%; order: 3; flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav.open { display: flex; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--border-2);
    background: transparent; cursor: pointer; font-size: 20px; color: var(--navy);
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: var(--pill); border: none; cursor: pointer;
  font-weight: 700; font-size: 15px; font-family: var(--font-sans);
  text-decoration: none;
}
.btn-primary { background: var(--tan); color: var(--navy); }
.btn-primary:hover { background: var(--tan-2); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--cream); }
.btn-dark:hover { background: #263A56; color: var(--cream); }
.btn-outline-light { background: transparent; color: var(--cream); border: 1px solid var(--cream-soft); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: var(--pill); }

/* Hero */
.hero {
  background: var(--navy); color: var(--cream);
  padding: 90px 48px; display: flex; align-items: center; gap: 60px; flex-wrap: wrap;
}
.hero-copy { flex: 1; min-width: 320px; max-width: 600px; }
.eyebrow { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-soft-2); margin-bottom: 18px; }
.hero h1 { font-size: 52px; line-height: 1.15; margin: 0 0 24px; }
.hero p { font-size: 17px; line-height: 1.7; color: var(--cream-soft); margin: 0 0 34px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media { flex: 1; min-width: 320px; height: 380px; border-radius: var(--radius-lg); overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 640px) {
  .hero { padding: 56px 20px; }
  .hero h1 { font-size: 36px; }
}

/* USP strip */
.usp-strip {
  padding: 44px 48px; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.usp { text-align: center; max-width: 200px; }
.usp-title { font-family: var(--font-serif); font-size: 20px; margin-bottom: 6px; }
.usp-desc { font-size: 13px; color: var(--muted); }

/* Sections */
.section { padding: 70px 48px; }
.section-alt { background: var(--cream-2); }
.section-dark { background: var(--navy); color: var(--cream); }
.section h2 { font-size: 32px; text-align: center; margin: 0 0 40px; }
.section-dark h2 { color: var(--cream); }
@media (max-width: 640px) {
  .section { padding: 44px 20px; }
  .section h2 { font-size: 26px; }
}

/* Category cards */
.cat-grid { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.cat-card { width: 210px; text-decoration: none; color: inherit; }
.cat-thumb { height: 150px; border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat-label { font-family: var(--font-serif); font-size: 17px; text-align: center; }

/* Product cards */
.product-grid { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.product-card {
  width: 260px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; position: relative;
}
.product-badge {
  position: absolute; top: 24px; left: 24px; background: var(--navy); color: var(--cream);
  font-size: 11px; padding: 4px 10px; border-radius: var(--pill); letter-spacing: 0.04em;
}
.product-thumb { height: 180px; border-radius: 10px; margin-bottom: 14px; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-cat { font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.product-name { font-family: var(--font-serif); font-size: 16px; margin-bottom: 6px; }
.product-desc { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.product-foot { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-weight: 800; font-size: 16px; }

/* Testimonials */
.testimonial-grid { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.testimonial-card { width: 300px; background: var(--cream-2); border-radius: var(--radius); padding: 26px; }
.testimonial-quote { font-family: var(--font-serif); font-size: 32px; color: var(--cream-soft-2); line-height: 0.5; margin-bottom: 10px; }
.testimonial-text { font-size: 14px; line-height: 1.7; color: var(--ink); margin-bottom: 16px; }
.testimonial-name { font-size: 13px; font-weight: 700; }
.testimonial-city { font-size: 12px; color: var(--muted-2); }

/* Blog cards */
.blog-grid { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.blog-card { width: 300px; text-decoration: none; color: inherit; }
.blog-card.wide { width: 320px; }
.blog-thumb { height: 170px; border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.blog-card.wide .blog-thumb { height: 190px; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-meta { font-size: 12px; color: var(--muted-2); margin-bottom: 8px; }
.section-dark .blog-meta { color: var(--cream-soft-2); }
.blog-title { font-family: var(--font-serif); font-size: 18px; line-height: 1.4; }
.blog-card.wide .blog-title { font-size: 19px; margin-bottom: 8px; }
.blog-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Newsletter */
.newsletter { padding: 60px 48px; text-align: center; }
.newsletter h2 { font-size: 28px; margin: 0 0 14px; }
.newsletter p { color: var(--muted); margin: 0 0 26px; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  padding: 14px 18px; border-radius: var(--pill); border: 1px solid var(--border-2);
  width: 280px; font-family: var(--font-sans); font-size: 14px;
}
.form-note { font-size: 13px; color: var(--muted-2); margin-top: 14px; }
.form-success { font-size: 14px; color: #2E6B3E; margin-top: 14px; font-weight: 700; }

/* Generic content pages */
.page-head { text-align: center; margin-bottom: 12px; }
.page-eyebrow { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.page-head h1 { font-size: 40px; margin: 0 0 14px; }
.page-head p { color: var(--muted); max-width: 560px; margin: 0 auto 34px; }

.prose { padding: 60px 48px; max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: 36px; margin: 0 0 24px; }
.prose h2 { font-size: 22px; margin: 26px 0 12px; }
.prose p { font-size: 15px; line-height: 1.8; color: var(--ink); margin: 0 0 16px; }
.prose .updated { font-size: 14px; color: var(--muted-2); margin-bottom: 24px; }

/* Category filter chips */
.filter-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.filter-chip {
  padding: 10px 20px; border-radius: var(--pill); border: 1px solid var(--border-2);
  background: transparent; color: var(--navy); cursor: pointer;
  font-family: var(--font-sans); font-size: 14px; white-space: nowrap;
}
.filter-chip.active { border-color: var(--navy); background: var(--navy); color: var(--cream); }

/* Cart page */
.cart-wrap { padding: 60px 48px; max-width: 820px; margin: 0 auto; }
.cart-wrap h1 { font-size: 36px; margin: 0 0 30px; }
.cart-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.cart-item {
  display: flex; align-items: center; gap: 18px; background: var(--white);
  border: 1px solid var(--border); border-radius: 12px; padding: 14px;
}
.cart-item-thumb { width: 76px; height: 76px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 120px; }
.cart-item-name { font-family: var(--font-serif); font-size: 16px; }
.cart-item-price { font-size: 13px; color: var(--muted); }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: var(--pill); border: 1px solid var(--border-2);
  background: transparent; cursor: pointer; font-size: 15px; line-height: 1;
}
.line-total { width: 70px; text-align: right; font-weight: 800; }
.remove-link { color: var(--muted-2); cursor: pointer; font-size: 13px; background: none; border: none; font-family: var(--font-sans); }

.cart-summary { background: var(--cream-2); border-radius: 12px; padding: 24px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.summary-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 17px; padding-top: 10px; border-top: 1px solid var(--border-2); margin-top: 10px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--muted); }
.cart-thanks { background: var(--cream-2); border-radius: var(--radius); padding: 40px; text-align: center; }
.cart-thanks h2 { font-size: 24px; margin-bottom: 12px; }

/* Contact */
.contact-grid { padding: 60px 48px; max-width: 1000px; margin: 0 auto; display: flex; gap: 60px; flex-wrap: wrap; }
.contact-col { flex: 1; min-width: 300px; }
.contact-col h1 { font-size: 36px; margin: 0 0 20px; }
.contact-col > p.lead { color: var(--muted); line-height: 1.7; margin-bottom: 30px; }
.contact-fact { margin-bottom: 16px; }
.contact-map { height: 200px; border-radius: 12px; margin-top: 26px; overflow: hidden; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-form-card { flex: 1; min-width: 300px; background: var(--cream-2); border-radius: var(--radius); padding: 30px; }

.field { margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 700; display: block; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px; border-radius: 8px; border: 1px solid var(--border-2);
  font-family: var(--font-sans); font-size: 14px; background: var(--white);
}
.field textarea { resize: vertical; }

/* FAQ */
.faq-wrap { padding: 60px 48px; max-width: 760px; margin: 0 auto; }
.faq-wrap h1 { text-align: center; margin: 0 0 30px; font-size: 36px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 0; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 16px; padding: 18px 0; font-family: var(--font-sans); color: var(--navy);
}
.faq-answer { margin: 0 0 18px; color: var(--muted); line-height: 1.7; font-size: 14px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-icon { font-size: 18px; }

/* About */
.about-media { height: 260px; border-radius: var(--radius); margin: 30px 0; overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }

/* Blog post */
.post-wrap { padding: 60px 48px; max-width: 760px; margin: 0 auto; }
.back-link { color: var(--muted-2); cursor: pointer; font-size: 14px; }
.post-meta { font-size: 13px; color: var(--muted-2); margin: 20px 0 10px; }
.post-wrap h1 { font-size: 36px; line-height: 1.25; margin: 0 0 26px; }
.post-media { height: 280px; border-radius: var(--radius); margin-bottom: 34px; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; }
.post-cta { margin-top: 40px; padding: 26px; background: var(--cream-2); border-radius: var(--radius); text-align: center; }
.post-cta div { font-family: var(--font-serif); font-size: 18px; margin-bottom: 10px; }

/* Footer */
.site-footer { background: var(--navy); color: var(--cream); padding: 56px 48px 24px; }
.footer-grid { display: flex; gap: 50px; flex-wrap: wrap; justify-content: space-between; max-width: 1200px; margin: 0 auto 30px; }
.footer-brand { max-width: 280px; }
.footer-brand .brand-name { color: var(--cream); font-size: 22px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: var(--muted-navy-2); }
.footer-col-title { font-weight: 700; margin-bottom: 14px; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--cream-soft-2); }
.footer-links a, .footer-links span { color: var(--cream-soft-2); cursor: pointer; }
.footer-bottom {
  border-top: 1px solid rgba(250,246,238,0.15); margin-top: 10px; padding-top: 20px;
  max-width: 1200px; margin-left: auto; margin-right: auto; display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--muted-navy);
}
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: var(--muted-navy); }
@media (max-width: 640px) {
  .site-footer { padding: 40px 20px 20px; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); color: var(--cream);
  padding: 18px 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; z-index: 100; box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.cookie-banner.hidden { display: none; }
.cookie-banner span { font-size: 14px; max-width: 700px; }
.cookie-banner a { text-decoration: underline; cursor: pointer; color: var(--cream); }
@media (max-width: 640px) {
  .cookie-banner { padding: 16px 20px; }
}
