/* ============================================
   EVERGREEN ALBUMS — Main Stylesheet
   ============================================ */

:root {
  --green: #4ABA61;
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #D4EDDA;
  --cream: #F9F6F1;
  --cream-dark: #F0EBE3;
  --text: #1a2e1e;
  --text-light: #5a7a62;
  --text-muted: #8fa897;
  --white: #ffffff;
  --border: rgba(74, 186, 97, 0.2);
  --shadow: 0 4px 40px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 12px 60px rgba(27, 67, 50, 0.15);
  --radius: 6px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 3rem;
  background: rgba(249, 246, 241, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-dark);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-logo-tag {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-light);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-dark);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--green-dark);
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--green-dark);
  letter-spacing: 0.05em;
}

.mobile-cta {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-dark);
  padding: 0.8rem 2rem;
  border-radius: 100px;
  margin-top: 1rem;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 9rem 6rem 4rem;
  max-width: 1300px;
  margin: 0 auto;}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--green-mid);
}

.hero-dash {
  font-style: normal;
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-image-wrap {
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-dark);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.25);
}

.btn-primary.btn-full {
  width: 100%;
  text-align: center;
}

.btn-primary.btn-light {
  background: var(--white);
  color: var(--green-dark);
}

.btn-primary.btn-light:hover {
  background: var(--cream);
}

.btn-ghost {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 2px;
}

.btn-ghost:hover {
  color: var(--green-dark);
  border-bottom-color: var(--green);
}

.btn-ghost-dark {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: transparent;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-ghost-dark:hover {
  border-color: var(--green-mid);
  background: var(--green-light);
}

/* ============================================
   SECTION COMMONS
   ============================================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how {
  background: var(--white);
  padding: 6rem 2rem;
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #7AC98A;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  margin: 0 auto 1.25rem;
  background: var(--cream);
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.step-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

.step-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 4rem;
  flex-shrink: 0;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  padding: 6rem 0;
  background: var(--cream);
}

.gallery .container {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 0 2rem;
  max-width: 1300px;
  margin: 0 auto 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-large img {
  height: 100%;
  min-height: 528px;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-caption {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  padding: 0 2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '⤢';
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(255,255,255,0.85);
  color: var(--green-dark);
  font-size: 0.7rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s;
}

/* ============================================
   WHY
   ============================================ */

.why {
  background: var(--white);
  padding: 6rem 2rem;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}

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

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   PRICING
   ============================================ */

.pricing {
  background: var(--cream);
  padding: 6rem 2rem;
  text-align: center;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.pricing-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-light);
}

.pricing-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  color: var(--green);
  flex-shrink: 0;
}

.pricing-love {
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

/* ============================================
   CTA
   ============================================ */

.cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-image {
  position: absolute;
  inset: 0;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,67,50,0.75), rgba(27,67,50,0.85));
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 700px;
}

.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--green-dark);
  padding: 3rem 3rem 1.5rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-contact a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero-sm {
  padding: 8rem 2rem 3rem;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.page-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
}

.page-sub a {
  color: var(--green-mid);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

.page-sub a:hover {
  border-color: var(--green);
}

/* ============================================
   ORDER PAGE
   ============================================ */

.order-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  align-items: start;
}

.order-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* Progress Bar */
.progress-bar {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--cream);
  transition: all 0.3s;
}

.progress-step.active .progress-dot {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.progress-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.progress-step.active .progress-label {
  color: var(--green-dark);
}

.progress-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 0.75rem;
  margin-bottom: 1.4rem;
}

/* Form Steps */
.form-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--green-dark);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.required { color: var(--green); }
.optional { color: var(--text-muted); font-weight: 300; }

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

.form-input:focus {
  border-color: var(--green);
  background: var(--white);
}

.form-input.input-error {
  border-color: #e05252;
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%235a7a62' 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;
  cursor: pointer;
}

.form-hint {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.form-nav {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.hidden { display: none !important; }

/* Order Summary */
.order-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.summary-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-total {
  font-weight: 500;
  color: var(--green-dark);
  padding-top: 0.75rem;
}

.order-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  background: var(--green-light);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.order-note svg { flex-shrink: 0; margin-top: 1px; color: var(--green-mid); }

.order-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.order-privacy a {
  color: var(--green-mid);
  border-bottom: 1px solid var(--border);
}

.btn-pay {
  width: 100%;
  padding: 1rem;
  font-size: 0.88rem;
}

/* Order Side Panel */
.order-side {
  position: sticky;
  top: 6rem;
}

.order-side-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1rem;
}

.order-side-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.order-side-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.order-side-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.order-side-list li:last-child { border-bottom: none; }
.order-side-list svg { color: var(--green); flex-shrink: 0; }

.order-side-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.order-side-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}

.order-side-trust {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  padding: 0.4rem 0;
}

.trust-item svg { color: var(--green-mid); }

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-section {
  padding: 5rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 6rem;
}

.about-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  background: var(--cream-dark);
}

.about-img-caption {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem;
  text-align: center;
}

.about-content p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-intro {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: var(--green-dark) !important;
  line-height: 1.5 !important;
}

.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  color: var(--green-dark);
  margin-top: 2.5rem;
  margin-bottom: 0.25rem;
}

.about-title-text {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-values {
  background: var(--green-dark);
  padding: 5rem 2rem;
  text-align: center;
}

.about-values .section-title {
  color: var(--white);
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-item {
  text-align: left;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}

.value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  margin-bottom: 1rem;
  line-height: 1;
}

.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.value-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.faq-wrap {
  margin-bottom: 4rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--green-dark);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--green-mid); }

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-answer a {
  color: var(--green-mid);
  border-bottom: 1px solid var(--border);
}

.faq-cta {
  text-align: center;
  padding: 3rem 0;
}

.faq-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.nav-logo-text {
  flex-direction: column;
  gap: 0.1rem;
}

.footer-logo-img {
  display: none;
}

/* ============================================
   CONTACT PAGE — fixed width
   ============================================ */

.contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
}

.contact-info-value a {
  color: var(--green-mid);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

.contact-info-value a:hover {
  border-color: var(--green);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--green-mid);
  padding: 1rem;
  background: var(--green-light);
  border-radius: var(--radius);
}

/* ============================================
   PRIVACY / LEGAL PAGE
   ============================================ */

.legal-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.legal-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.7;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.legal-block p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-block ul {
  margin: 0.75rem 0 0.75rem 1.5rem;
}

.legal-block ul li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.legal-block a {
  color: var(--green-mid);
  border-bottom: 1px solid var(--border);
}

.legal-block strong {
  font-weight: 500;
  color: var(--text);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 3rem 4rem;
    text-align: center;
    min-height: auto;
    gap: 3rem;
  }

  .hero-body { max-width: 100%; }
  .hero-actions { justify-content: center; }

  .hero-img {
    height: 380px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step-divider {
    width: 1px;
    height: 40px;
    margin: 0;
  }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-frame {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .order-section {
    grid-template-columns: 1fr;
  }

  .order-side {
    position: static;
    order: -1;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 6rem 1.5rem 3rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 1rem;
  }

  .gallery-large { grid-column: span 2; }
  .gallery-large img { min-height: 280px; }
  .gallery-wide { grid-column: span 2; }

  .why-grid { grid-template-columns: 1fr; }

  .order-wrap { padding: 2rem 1.5rem; }

  .footer { padding: 2.5rem 1.5rem 1.5rem; }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .progress-bar { gap: 0; }
  .progress-label { display: none; }

  .hero-image-badge {
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 0.6rem;
    padding: 0.4rem 0.75rem;
  }

  .page-hero {
    padding: 8rem 2rem 3rem;
  }

  .page-hero-sm {
    padding: 7rem 2rem 2rem;
  }
}
