@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

:root {
  --sage: #8B9A6B;
  --sage-light: #A8B88C;
  --sage-dark: #6B7A4B;
  --forest: #2C4A2E;
  --forest-deep: #1A2E1C;
  --cream: #F5F0E8;
  --cream-warm: #EDE6D8;
  --sand: #D4C5A9;
  --sand-light: #E8DFC8;
  --terracotta: #C47B5A;
  --terracotta-soft: #D49A7E;
  --moss: #4A6741;
  --white: #FDFBF7;
  --text-primary: #2A2A25;
  --text-secondary: #5A5A50;
  --text-light: #8A8A7A;
  --overlay-dark: rgba(26, 46, 28, 0.7);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-soft: 0 4px 20px rgba(44, 74, 46, 0.08);
  --shadow-md: 0 8px 30px rgba(44, 74, 46, 0.12);
  --shadow-lg: 0 16px 50px rgba(44, 74, 46, 0.15);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TEXTURE OVERLAYS ─── */
.grain-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(139, 154, 107, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.logo-leaf {
  width: 32px;
  height: 32px;
  fill: var(--sage);
  transition: var(--transition);
}

.logo:hover .logo-leaf {
  transform: rotate(-15deg) scale(1.1);
  fill: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 40%, var(--sand-light) 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.hero-circle:nth-child(1) {
  width: 600px; height: 600px;
  background: var(--sage);
  top: -200px; right: -100px;
  animation: floatSlow 20s ease-in-out infinite;
}

.hero-circle:nth-child(2) {
  width: 400px; height: 400px;
  background: var(--terracotta-soft);
  bottom: -150px; left: -50px;
  animation: floatSlow 25s ease-in-out infinite reverse;
}

.hero-circle:nth-child(3) {
  width: 250px; height: 250px;
  background: var(--sage-light);
  top: 40%; left: 55%;
  animation: floatSlow 15s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 154, 107, 0.15);
  border: 1px solid rgba(139, 154, 107, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--sage);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--forest-deep);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--cream);
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-image-wrap {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 560px;
  z-index: 1;
  animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-deco-line {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translate(40px, -50%); }
  to { opacity: 1; transform: translate(0, -50%); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── SECTIONS COMMON ─── */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--forest-deep);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

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

/* ─── ARTICLE CONTENT ─── */
.article-section {
  padding: 100px 0 60px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 1.8rem;
  color: var(--forest);
  margin: 48px 0 16px;
  position: relative;
  padding-left: 20px;
}

.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: calc(100% - 6px);
  background: var(--sage);
  border-radius: 4px;
}

.article-body h3 {
  font-size: 1.35rem;
  color: var(--forest);
  margin: 32px 0 12px;
}

.article-body p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.85;
}

.article-body ul {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}

.article-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--sage-light);
  border-radius: 50%;
}

.info-callout {
  background: linear-gradient(135deg, rgba(139, 154, 107, 0.1), rgba(139, 154, 107, 0.05));
  border-left: 4px solid var(--sage);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}

.info-callout p {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0;
  font-style: italic;
}

/* ─── BLOG CARDS ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--cream-warm);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: 0.02em;
}

.blog-card-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  padding: 160px 0 80px;
  background: linear-gradient(to bottom, var(--cream), var(--white));
  text-align: center;
}

.about-hero .section-title {
  max-width: 700px;
  margin: 0 auto 20px;
}

.about-hero .section-desc {
  max-width: 600px;
  margin: 0 auto;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 154, 107, 0.15), rgba(139, 154, 107, 0.05));
  border-radius: 50%;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 1.8;
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── ORDER FORM ─── */
.form-section {
  padding: 100px 0;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-wrapper h2 {
  font-size: 2rem;
  color: var(--forest);
  margin-bottom: 8px;
  text-align: center;
}

.form-wrapper > p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(139, 154, 107, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sage);
}

.form-consent label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.form-consent a {
  color: var(--sage-dark);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: var(--forest);
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ─── SUCCESS PAGE ─── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream), var(--cream-warm));
  text-align: center;
  padding: 40px 24px;
}

.success-content {
  max-width: 500px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}

.success-content h1 {
  font-size: 2.4rem;
  color: var(--forest);
  margin-bottom: 16px;
}

.success-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.success-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream);
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.success-back:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--forest-deep);
  color: rgba(245, 240, 232, 0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-brand .logo .logo-leaf {
  fill: var(--sage-light);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--sage-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage-light);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-disclaimer {
  padding: 28px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  margin-top: 28px;
}

.disclaimer-text {
  font-size: 0.78rem;
  line-height: 1.7;
  opacity: 0.5;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding: 140px 0 80px;
}

.legal-page h1 {
  font-size: 2.4rem;
  color: var(--forest);
  margin-bottom: 12px;
}

.legal-page .last-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.4rem;
  color: var(--forest);
  margin: 36px 0 12px;
}

.legal-page p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-page ul {
  margin: 12px 0 20px 24px;
}

.legal-page ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-image-wrap {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 60px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-wrapper {
    padding: 32px 24px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-content {
    padding: 120px 0 60px;
  }
}
