

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

:root {
  --forest  : #2D6A4F;
  --forest-d: #1F4F3A;
  --ocean   : #1A6B8A;
  --sun     : #E8A020;
  --sand    : #F5F0E8;
  --sand-d  : #EAE4D6;
  --charcoal: #1E1E1E;
  --mid     : #4A4A4A;
  --muted   : #717171;
  --white   : #FFFFFF;
  --radius  : 4px;
  --max-w   : 960px;
  --font-head: 'Noto Serif JP', serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

html { background: var(--sand); scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--sand);
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--mid); line-height: 1.7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--sand-d);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.header-brand { display: flex; align-items: center; gap: 12px; }
.header-brand img { width: 42px; height: 42px; }
.brand-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--forest); }
.brand-sub  { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-top: -2px; }

.site-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.site-nav a { font-size: 0.85rem; font-weight: 500; color: var(--mid); padding: 6px 10px; border-radius: var(--radius); }
.site-nav a:hover { color: var(--forest); }
.nav-cta { margin-left: 8px; background: var(--forest) !important; color: var(--white) !important; padding: 8px 18px !important; border-radius: var(--radius) !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--forest-d) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; }

.hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-d) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-content { color: var(--white); }
.hero-content h1 { color: var(--white); margin-bottom: 16px; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 24px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.hero-image img { width: 100%; height: auto; border-radius: var(--radius); }

.stats {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--sand-d);
  border-bottom: 1px solid var(--sand-d);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.stat-item { padding: 20px 0; }
.stat-number { display: block; font-size: 2.2rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; font-family: var(--font-head); }
.stat-label { display: block; font-size: 0.95rem; color: var(--muted); }

.about {
  padding: 80px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-image img { width: 100%; height: auto; border-radius: var(--radius); }
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 16px; }

.categories {
  padding: 80px 0;
  background: var(--sand);
}
.categories h2 { text-align: center; margin-bottom: 12px; }
.categories .lead { text-align: center; margin-bottom: 48px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand-d);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.08); }
.cat-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.cat-card-body { padding: 24px; }
.cat-card-body h3 { margin-bottom: 8px; color: var(--forest); }
.cat-card-body p { font-size: 0.9rem; color: var(--muted); }

.products {
  padding: 80px 0;
  background: var(--white);
}
.products h2 { text-align: center; margin-bottom: 12px; }
.products .lead { text-align: center; margin-bottom: 48px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--sand-d);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.08); }
.product-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
.product-card-body { padding: 24px; }
.product-tag { display: inline-block; font-size: 0.7rem; background: var(--sand); color: var(--forest); padding: 4px 8px; border-radius: 2px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.product-card-body h3 { margin-bottom: 12px; color: var(--charcoal); }
.product-card-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.product-price { display: block; font-size: 1.3rem; font-weight: 700; color: var(--forest); margin-bottom: 16px; }
.product-actions { display: flex; gap: 12px; }
.product-actions a { flex: 1; text-align: center; }

.features {
  padding: 80px 0;
  background: var(--sand);
}
.features h2 { text-align: center; margin-bottom: 12px; }
.features .lead { text-align: center; margin-bottom: 48px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.feature-item { text-align: center; }
.feature-item svg { margin: 0 auto 16px; }
.feature-item h3 { margin-bottom: 8px; color: var(--forest); }
.feature-item p { font-size: 0.9rem; color: var(--muted); }

.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-d) 100%);
  padding: 64px 0;
  color: var(--white);
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.8); }

.brands {
  padding: 80px 0;
  background: var(--white);
}
.brands h2 { text-align: center; margin-bottom: 12px; }
.brands .lead { text-align: center; margin-bottom: 48px; }
.brands-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.brand-logo-item {
  background: var(--sand);
  border: 1px solid var(--sand-d);
  border-radius: var(--radius);
  padding: 32px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonials {
  padding: 80px 0;
  background: var(--sand);
}
.testimonials h2 { text-align: center; margin-bottom: 12px; }
.testimonials .lead { text-align: center; margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand-d);
  border-radius: var(--radius);
  padding: 24px;
}
.testimonial-stars { font-size: 0.9rem; color: var(--sun); margin-bottom: 12px; }
.testimonial-text { color: var(--mid); margin-bottom: 16px; font-size: 0.95rem; }
.testimonial-author { display: flex; gap: 12px; align-items: center; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-name { font-weight: 600; color: var(--charcoal); font-size: 0.9rem; }
.testimonial-location { font-size: 0.8rem; color: var(--muted); }

.contacts {
  padding: 80px 0;
  background: var(--forest);
  color: var(--white);
}
.contacts h2 { color: var(--white); text-align: center; margin-bottom: 12px; }
.contacts .lead { color: rgba(255,255,255,0.8); text-align: center; margin-bottom: 48px; }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-items { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.contact-detail h4 { color: #000; margin-bottom: 4px; font-size: 0.95rem; }
.contact-detail a { color: rgba(0,0,0,0.75); text-decoration: underline; }
.contact-detail p { color: rgba(0,0,0,0.65); font-size: 0.85rem; }
.contact-form { background: rgba(255,255,255,0.05); padding: 32px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #000; font-size: 0.9rem; margin-bottom: 6px; font-weight: 500; }
.form-group input,
.form-group textarea { width: 100%; padding: 10px 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); color: var(--white); font-family: var(--font-body); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.5); }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-sun {
  background: var(--sun);
  color: var(--white);
}
.btn-sun:hover {
  background: #D68F1A;
}
.btn-forest {
  background: var(--forest);
  color: var(--white);
}
.btn-forest:hover {
  background: var(--forest-d);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--forest-d);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 8px;
}

.lead {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.page-hero {
  background: var(--forest);
  padding: 60px 0 52px;
}
.page-hero .container { max-width: 1160px; }
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1rem; }
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--sand); }

.page-content { padding: 64px 0 80px; }
.page-content h2 { margin-bottom: 16px; color: var(--charcoal); }
.page-content h3 { color: var(--charcoal); margin: 32px 0 10px; }
.page-content p  { margin-bottom: 16px; }
.page-content ul { margin: 0 0 16px 20px; list-style: disc; }
.page-content ul li { color: var(--mid); margin-bottom: 6px; font-size: 0.95rem; }

.page-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 24px;
  border: 1px solid var(--sand-d);
}
.page-block:last-child { margin-bottom: 0; }

.policy-placeholder {
  padding: 80px 0;
  text-align: center;
}
.policy-placeholder p { font-size: 0.95rem; color: var(--muted); }

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
  text-align: center;
}
.about-block > div { text-align: center; }
.about-block + .about-block {
  border-top: 1px solid var(--sand-d);
}
.about-block.reverse { direction: ltr; }
.about-block.reverse > * { direction: ltr; }
.about-block h2 { margin-bottom: 16px; }
.about-block p  { margin-bottom: 14px; }
.img-placeholder {
  background: var(--sand-d);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.placeholder-icon { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.45; }
.placeholder-icon svg { width: 40px; height: 40px; }
.placeholder-icon span { font-size: 0.72rem; color: var(--muted); }

.site-footer { background: #111; padding: 56px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; max-width: 1160px; margin-left: auto; margin-right: auto; padding: 0 24px; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand-name { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li + li { margin-top: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-col ul li a:hover { color: var(--sand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; max-width: 1160px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: var(--sand); }

@media (max-width: 960px) {
  .about-block { grid-template-columns: 1fr; gap: 28px; }
  .about-block.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-d) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-content { color: var(--white); }
.hero-content h1 { color: var(--white); margin-bottom: 16px; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 24px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.hero-image img { width: 100%; height: auto; border-radius: var(--radius); }

.stats {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--sand-d);
  border-bottom: 1px solid var(--sand-d);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.stat-item { padding: 20px 0; }
.stat-number { display: block; font-size: 2.2rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; font-family: var(--font-head); }
.stat-label { display: block; font-size: 0.95rem; color: var(--muted); }

.about {
  padding: 80px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-image img { width: 100%; height: auto; border-radius: var(--radius); }
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 16px; }

.categories {
  padding: 80px 0;
  background: var(--sand);
}
.categories h2 { text-align: center; margin-bottom: 12px; }
.categories .lead { text-align: center; margin-bottom: 48px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand-d);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.08); }
.cat-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.cat-card-body { padding: 24px; }
.cat-card-body h3 { margin-bottom: 8px; color: var(--forest); }
.cat-card-body p { font-size: 0.9rem; color: var(--muted); }

.products {
  padding: 80px 0;
  background: var(--white);
}
.products h2 { text-align: center; margin-bottom: 12px; }
.products .lead { text-align: center; margin-bottom: 48px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--sand-d);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.08); }
.product-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
.product-card-body { padding: 24px; }
.product-tag { display: inline-block; font-size: 0.7rem; background: var(--sand); color: var(--forest); padding: 4px 8px; border-radius: 2px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.product-card-body h3 { margin-bottom: 12px; color: var(--charcoal); }
.product-card-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.product-price { display: block; font-size: 1.3rem; font-weight: 700; color: var(--forest); margin-bottom: 16px; }
.product-actions { display: flex; gap: 12px; }
.product-actions a { flex: 1; text-align: center; }

.features {
  padding: 80px 0;
  background: var(--sand);
}
.features h2 { text-align: center; margin-bottom: 12px; }
.features .lead { text-align: center; margin-bottom: 48px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.feature-item { text-align: center; }
.feature-item svg { margin: 0 auto 16px; }
.feature-item h3 { margin-bottom: 8px; color: var(--forest); }
.feature-item p { font-size: 0.9rem; color: var(--muted); }

.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-d) 100%);
  padding: 64px 0;
  color: var(--white);
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.8); }

.brands {
  padding: 80px 0;
  background: var(--white);
}
.brands h2 { text-align: center; margin-bottom: 12px; }
.brands .lead { text-align: center; margin-bottom: 48px; }
.brands-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.brand-logo-item {
  background: var(--sand);
  border: 1px solid var(--sand-d);
  border-radius: var(--radius);
  padding: 32px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonials {
  padding: 80px 0;
  background: var(--sand);
}
.testimonials h2 { text-align: center; margin-bottom: 12px; }
.testimonials .lead { text-align: center; margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand-d);
  border-radius: var(--radius);
  padding: 24px;
}
.testimonial-stars { font-size: 0.9rem; color: var(--sun); margin-bottom: 12px; }
.testimonial-text { color: var(--mid); margin-bottom: 16px; font-size: 0.95rem; }
.testimonial-author { display: flex; gap: 12px; align-items: center; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-name { font-weight: 600; color: var(--charcoal); font-size: 0.9rem; }
.testimonial-location { font-size: 0.8rem; color: var(--muted); }

.contacts {
  padding: 80px 0;
  background: var(--forest);
  color: var(--white);
}
.contacts h2 { color: var(--white); text-align: center; margin-bottom: 12px; }
.contacts .lead { color: rgba(255,255,255,0.8); text-align: center; margin-bottom: 48px; }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-items { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.contact-detail h4 { color: #000; margin-bottom: 4px; font-size: 0.95rem; }
.contact-detail a { color: rgba(0,0,0,0.75); text-decoration: underline; }
.contact-detail p { color: rgba(0,0,0,0.65); font-size: 0.85rem; }
.contact-form { background: rgba(255,255,255,0.05); padding: 32px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #000; font-size: 0.9rem; margin-bottom: 6px; font-weight: 500; }
.form-group input,
.form-group textarea { width: 100%; padding: 10px 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); color: var(--white); font-family: var(--font-body); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.5); }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-sun {
  background: var(--sun);
  color: var(--white);
}
.btn-sun:hover {
  background: #D68F1A;
}
.btn-forest {
  background: var(--forest);
  color: var(--white);
}
.btn-forest:hover {
  background: var(--forest-d);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--forest-d);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 8px;
}

.lead {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.page-hero { padding: 40px 0 36px; }
  .page-block { padding: 24px; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--sand-d);
    padding: 16px 24px;
    gap: 4px;
  }
  .site-nav.open a { padding: 10px 0; border-bottom: 1px solid var(--sand-d); display: block; }
  .nav-cta { margin-left: 0 !important; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
