/* ============================================================
   SOCO CHIC WEB DESIGN  ·  Stylesheet
   Country Chic · Neutrals · Readable Cursive
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ── */
:root {
  /* Palette */
  --cream:        #F9F5EE;
  --white:        #FFFFFF;
  --beige:        #EDE8DC;
  --sand:         #D9D0C0;
  --light-grey:   #E8E4DC;
  --warm-tan:     #C4A882;
  --warm-brown:   #8B7355;
  --dark-brown:   #4A3728;
  --charcoal:     #2C2C2C;
  --black:        #1A1A1A;
  --text:         #3A3530;
  --text-mid:     #6B6258;
  --text-light:   #9A9186;

  /* Fonts */
  --font-script:  'Dancing Script', cursive;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  /* Shadows */
  --shadow-soft:   0 4px 24px rgba(139,115,85,.09);
  --shadow-card:   0 6px 32px rgba(74,55,40,.12);
  --shadow-lifted: 0 14px 50px rgba(74,55,40,.17);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --dur:  .35s;
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--text-light); }

/* ── 3. TYPOGRAPHY UTILITIES ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--warm-tan);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.15;
  margin-bottom: .8rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 1.2rem auto 0;
  line-height: 1.8;
}

/* ── 4. LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ── 5. ORNAMENT DIVIDER ── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin: .8rem 0 1rem;
}
.ornament-divider--left {
  justify-content: flex-start;
}
.ornament-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--sand);
}
.ornament-diamond {
  color: var(--warm-tan);
  font-size: .9rem;
  line-height: 1;
}

/* ── 6. BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border-radius: 2px;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--warm-brown);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(139,115,85,.3);
}
.btn-primary:hover {
  background: var(--dark-brown);
  box-shadow: 0 8px 28px rgba(74,55,40,.35);
}

.btn-outline {
  border: 1.5px solid var(--warm-tan);
  color: var(--warm-brown);
  background: transparent;
}
.btn-outline:hover {
  background: var(--warm-brown);
  color: var(--white);
  border-color: var(--warm-brown);
}

.btn-full { display: block; width: 100%; text-align: center; }
.btn-loading { display: none; }

/* ── 7. TOP ACCENT BAR ── */
.top-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--sand), var(--warm-tan), var(--warm-brown), var(--warm-tan), var(--sand));
}

/* ── 8. NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(249,245,238,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  border-bottom-color: var(--beige);
  box-shadow: 0 2px 20px rgba(74,55,40,.08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.nav-logo-badge {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-script {
  font-family: var(--font-script);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1;
}
.nav-logo-sub {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warm-tan);
  margin-top: .15rem;
}
.nav-logo-region {
  font-size: .52rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: .12rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--warm-tan);
  transition: width var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--dark-brown); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.contact-btn {
  background: var(--warm-brown);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 2px;
  box-shadow: 0 3px 12px rgba(139,115,85,.25);
}
.contact-btn::after { display: none; }
.contact-btn:hover { background: var(--dark-brown) !important; color: var(--white); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-brown);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 9. HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #FAF7F2 0%, #F3EDE2 55%, #EEE7D8 100%);
  overflow: hidden;
  padding: 80px 2rem 60px;
}
.hero-bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-art svg {
  width: 100%;
  height: 100%;
}
.botanical {
  position: absolute;
  top: 0;
  width: min(200px, 22vw);
  height: 100%;
  pointer-events: none;
}
.botanical--left  { left: 0; }
.botanical--right { right: 0; }
.botanical svg { width: 100%; height: 100%; object-fit: cover; }

.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  animation: fadeUp .9s var(--ease) both;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--warm-tan);
  margin-bottom: .5rem;
}
.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.05;
  margin-bottom: .4rem;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-style: italic;
  color: var(--warm-brown);
  margin-bottom: 1.2rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 2.2rem;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating mockup */
.hero-mockup {
  position: absolute;
  right: max(2rem, 12vw);
  bottom: 40px;
  z-index: 3;
  animation: floatMockup 4s ease-in-out infinite;
  filter: drop-shadow(0 18px 40px rgba(74,55,40,.18));
}
.mockup-card {
  width: 220px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--beige);
}
.mockup-chrome {
  background: #F2EDE5;
  border-bottom: 1.5px solid var(--beige);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mc-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
}
.mc-dot--red    { background: #FF5F57; }
.mc-dot--yellow { background: #FFBD2E; }
.mc-dot--green  { background: #28CA42; }
.mc-urlbar {
  flex: 1;
  background: var(--white);
  border-radius: 3px;
  font-size: .5rem;
  color: var(--text-light);
  padding: 2px 6px;
  text-align: center;
  border: 1px solid var(--beige);
}
.mockup-screen { padding: 0; }
.ms-nav  { height: 20px; background: var(--dark-brown); }
.ms-hero-img { height: 52px; background: linear-gradient(135deg, #C4A882, #8B7355); }
.ms-content { padding: 8px 10px; }
.ms-line { height: 6px; background: var(--beige); border-radius: 3px; margin-bottom: 5px; }
.ms-line--wide  { width: 90%; }
.ms-line--mid   { width: 70%; }
.ms-line--short { width: 50%; }
.ms-btn { height: 14px; width: 60px; background: var(--warm-brown); border-radius: 2px; margin-top: 6px; }
.ms-cards { display: flex; gap: 5px; padding: 8px 10px 10px; }
.ms-card { flex: 1; height: 32px; background: var(--beige); border-radius: 3px; }

.mockup-palette {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  justify-content: center;
}
.mockup-palette span {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: fadeIn 1.5s ease both;
}
.scroll-text {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-arrow {
  color: var(--warm-tan);
  animation: bounce 2s ease-in-out infinite;
  font-size: 1rem;
}

/* ── 10. FEATURES BAR ── */
.features-bar {
  background: var(--dark-brown);
  padding: 1rem 2rem;
}
.features-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}
.feature-pill {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.fp-diamond { color: var(--warm-tan); font-size: .7rem; }

/* ── 11. SERVICES SECTION ── */
.services-section { background: var(--white); }

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.package-card {
  background: var(--cream);
  border: 1.5px solid var(--beige);
  border-radius: 6px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lifted);
}
.package-card--featured {
  background: var(--dark-brown);
  border-color: var(--dark-brown);
  color: var(--cream);
}
.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-tan);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-icon {
  font-size: 1.4rem;
  color: var(--warm-tan);
  margin-bottom: .8rem;
}
.pkg-name {
  font-family: var(--font-script);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: .6rem;
}
.package-card--featured .pkg-name { color: var(--warm-tan); }
.pkg-desc {
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}
.package-card--featured .pkg-desc { color: var(--sand); }
.pkg-features {
  text-align: left;
  margin-bottom: 1.5rem;
}
.pkg-features li {
  font-size: .88rem;
  color: var(--text-mid);
  padding: .4rem 0;
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.package-card--featured .pkg-features li {
  color: var(--sand);
  border-bottom-color: rgba(255,255,255,.1);
}
.pkg-features li::before {
  content: '✓';
  color: var(--warm-tan);
  font-size: .75rem;
  flex-shrink: 0;
}
.pkg-price {
  font-size: .95rem;
  color: var(--text-mid);
  margin-bottom: 1.4rem;
}
.package-card--featured .pkg-price { color: var(--sand); }
.pkg-price strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark-brown);
  display: block;
  margin-top: .2rem;
}
.package-card--featured .pkg-price strong { color: var(--white); }

/* Templates intro */
.templates-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige);
}
.templates-heading {
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: .5rem;
}
.templates-intro > p {
  font-size: .95rem;
  color: var(--text-mid);
}

/* Template grid */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
}
.template-card {
  display: block;
  background: var(--cream);
  border: 1.5px solid var(--beige);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  cursor: pointer;
}
.template-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lifted);
}

/* Browser chrome */
.template-browser {
  border-bottom: 1.5px solid var(--beige);
}
.tb-chrome {
  background: #EFEBE3;
  border-bottom: 1px solid var(--beige);
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tb-dots {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.tb-dots span {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.tb-dots span:nth-child(1) { background: #FF5F57; }
.tb-dots span:nth-child(2) { background: #FFBD2E; }
.tb-dots span:nth-child(3) { background: #28CA42; }
.tb-url {
  flex: 1;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--beige);
  border-radius: 3px;
  font-size: .48rem;
  color: var(--text-light);
  padding: 2px 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tb-screen {
  font-size: 0; /* kill whitespace gaps */
  overflow: hidden;
  height: 175px;
}
.tb-screen > * { font-size: initial; }

/* Template info */
.template-info { padding: 1.2rem 1.3rem; }
.template-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: .4rem;
}
.template-info p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: .8rem;
}
.template-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.template-view-link {
  display: inline-block;
  margin-top: .85rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--warm-brown);
  transition: color var(--dur) var(--ease), letter-spacing var(--dur) var(--ease);
}
.template-card:hover .template-view-link {
  color: var(--dark-brown);
  letter-spacing: .1em;
}

.template-tags span {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 20px;
  background: var(--beige);
  color: var(--warm-brown);
  border: 1px solid var(--sand);
}

.templates-cta {
  text-align: center;
  background: var(--beige);
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  padding: 2.5rem 2rem;
}
.templates-cta p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark-brown);
  margin-bottom: 1.4rem;
}

/* ── 12. ABOUT SECTION ── */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-frame {
  background: var(--beige);
  border: 2px solid var(--sand);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
}
.about-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px dashed var(--sand);
  border-radius: 16px;
  pointer-events: none;
}

/* Workspace CSS illustration */
.workspace {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  padding: 1rem 0 .5rem;
}
.ws-monitor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ws-screen-bezel {
  width: 260px;
  background: #2C2420;
  border-radius: 10px 10px 4px 4px;
  padding: 8px 8px 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}
.ws-screen-inner {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  height: 150px;
}
.ws-mini-nav {
  height: 18px;
  background: var(--dark-brown);
}
.ws-mini-hero {
  height: 50px;
  background: linear-gradient(135deg, var(--warm-tan), var(--warm-brown));
}
.ws-mini-content { padding: 8px 10px; }
.ws-mini-line {
  height: 5px;
  background: var(--beige);
  border-radius: 3px;
  margin-bottom: 5px;
  width: 80%;
}
.ws-mini-line--short { width: 55%; }
.ws-mini-btn {
  width: 48px; height: 12px;
  background: var(--warm-brown);
  border-radius: 2px;
  margin-top: 6px;
}
.ws-mini-cards {
  display: flex;
  gap: 4px;
  padding: 6px 10px;
  background: var(--cream);
}
.ws-mini-cards div {
  flex: 1;
  height: 22px;
  background: var(--beige);
  border-radius: 2px;
}
.ws-monitor-neck {
  width: 28px; height: 18px;
  background: #3A3530;
}
.ws-monitor-base {
  width: 90px; height: 8px;
  background: #3A3530;
  border-radius: 4px;
}
.ws-keyboard {
  width: 240px; height: 28px;
  background: linear-gradient(180deg, #D9D3C8, #C8C2B5);
  border-radius: 5px;
  box-shadow: 0 3px 8px rgba(0,0,0,.1);
  position: relative;
}
.ws-keyboard::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 60%; height: 60%;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.25) 0px, rgba(255,255,255,.25) 4px,
    transparent 4px, transparent 8px
  );
  border-radius: 2px;
}
.ws-mouse {
  position: absolute;
  right: 20px; bottom: 58px;
  width: 22px; height: 30px;
  background: linear-gradient(180deg, #D9D3C8, #C8C2B5);
  border-radius: 11px 11px 8px 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,.1);
}
.ws-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 10px;
  background: rgba(0,0,0,.15);
}

/* Workspace floating badges */
.ws-badge {
  position: absolute;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--dark-brown);
  padding: .3rem .7rem;
  border-radius: 20px;
  border: 1.5px solid var(--beige);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  pointer-events: none;
}
.ws-badge--1 { top: 0; left: -10px; }
.ws-badge--2 { top: 30px; right: -10px; }
.ws-badge--3 { bottom: 85px; left: -20px; }

.ws-swatch-row {
  display: flex;
  gap: 5px;
  margin-top: .3rem;
}
.ws-swatch-row span {
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.ws-floral-corner {
  position: absolute;
  bottom: 0; right: 0;
  width: 70px; height: 70px;
  pointer-events: none;
  opacity: .8;
}

/* About text */
.about-content { padding-left: 1rem; }
.about-content .ornament-divider { margin-bottom: 1.8rem; }
.about-para {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 2rem 0;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-diamond {
  color: var(--warm-tan);
  font-size: .9rem;
  margin-top: .3rem;
  flex-shrink: 0;
}
.value-item h4 {
  font-family: var(--font-serif);
  font-size: .98rem;
  color: var(--dark-brown);
  margin-bottom: .25rem;
}
.value-item p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── 13. TESTIMONIALS ── */
.testimonials-section {
  background: var(--beige);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.tcard-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: .8;
  color: var(--warm-tan);
  margin-bottom: .6rem;
  opacity: .6;
}
.tcard-text {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.tcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--warm-brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.tcard-author strong {
  display: block;
  font-size: .9rem;
  color: var(--dark-brown);
}
.tcard-author span {
  font-size: .78rem;
  color: var(--text-light);
}

/* ── 14. CONTACT SECTION ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {
  padding-top: .5rem;
}
.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.ci-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--beige);
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--warm-brown);
  flex-shrink: 0;
}
.ci-item h4 {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--dark-brown);
  margin-bottom: .25rem;
}
.ci-item p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.ci-social {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--beige);
}
.ci-social h4 {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--dark-brown);
  margin-bottom: .8rem;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.social-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--warm-brown);
  transition: color var(--dur);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.social-link::before {
  content: '→';
  font-size: .7rem;
  color: var(--warm-tan);
}
.social-link:hover { color: var(--dark-brown); }

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border: 1.5px solid var(--beige);
  border-radius: 10px;
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  margin-bottom: 1.3rem;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: .45rem;
}
.req { color: var(--warm-tan); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: 4px;
  padding: .75rem 1rem;
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7355' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--warm-tan);
  box-shadow: 0 0 0 3px rgba(196,168,130,.18);
}
textarea { resize: vertical; min-height: 140px; }

#submitBtn {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .12em;
  margin-top: .5rem;
  padding: 1rem;
  transition: background var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
#submitBtn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-feedback {
  margin-top: 1rem;
  padding: .9rem 1.2rem;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 500;
}
.form-feedback--success {
  background: #EEF6E8;
  border: 1px solid #B5D4A0;
  color: #3A6030;
}
.form-feedback--error {
  background: #FDF0EE;
  border: 1px solid #E8B4AA;
  color: #7A3028;
}

/* ── 15. FOOTER ── */
.footer {
  background: var(--charcoal);
  color: var(--sand);
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
}
.footer-botanical {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
}
.footer-botanical svg { width: 100%; height: 100%; }

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo-badge {
  height: 58px;
  width: auto;
  display: block;
  margin-bottom: .6rem;
}
.footer-logo {
  font-family: var(--font-script);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--warm-tan);
  line-height: 1;
  margin-bottom: .1rem;
}
.footer-logo-sub {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .8rem;
}
.footer-motto {
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .08em;
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: .88rem;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a {
  font-size: .85rem;
  color: var(--text-light);
  transition: color var(--dur);
}
.footer-col a:hover { color: var(--warm-tan); }
.footer-col--contact p {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: .4rem;
}
.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(196,168,130,.35);
  font-size: .7rem;
  font-weight: 700;
  color: var(--warm-tan);
  transition: background var(--dur), color var(--dur);
}
.footer-social a:hover {
  background: var(--warm-tan);
  color: var(--dark-brown);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
  padding: 1.3rem 2rem;
}
.footer-bottom p {
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: .05em;
}

/* ── 16. ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
@keyframes floatMockup {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger sibling reveals */
.packages-grid    .reveal:nth-child(2) { transition-delay: .1s; }
.packages-grid    .reveal:nth-child(3) { transition-delay: .2s; }
.templates-grid   .reveal:nth-child(2) { transition-delay: .08s; }
.templates-grid   .reveal:nth-child(3) { transition-delay: .16s; }
.templates-grid   .reveal:nth-child(4) { transition-delay: .05s; }
.templates-grid   .reveal:nth-child(5) { transition-delay: .12s; }
.templates-grid   .reveal:nth-child(6) { transition-delay: .20s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: .1s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: .2s; }

/* ── 17. RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-mockup { display: none; }
  .packages-grid    { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .templates-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual     { display: none; } /* hide on tablet — text is the focus */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner     { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  /* Nav mobile */
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 75px; left: 0;
    width: 100%; height: calc(100vh - 75px);
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-top: 1px solid var(--beige);
    z-index: 800;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; }
  .contact-btn { width: 100%; text-align: center; }

  .templates-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero { min-height: auto; padding: 100px 1.5rem 80px; }
  .botanical { width: 80px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .features-inner { gap: 1.2rem 2rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
