/* ========================================
   TIMBER & THREAD — SHOP-V3
   Editorial Single-Product Landing Page
   ======================================== */

:root {
  --linen: #F8F4EF;
  --rust: #8B4513;
  --rust-dark: #6E360F;
  --warm-brown: #6B4226;
  --deep-olive: #3D4F2F;
  --olive-light: #536B42;
  --cream: #FAF7F2;
  --parchment: #EDE8DF;
  --charcoal: #2C2420;
  --charcoal-light: #4A3F38;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(44,36,32,0.06);
  --shadow-md: 0 8px 30px rgba(44,36,32,0.1);
  --shadow-lg: 0 20px 60px rgba(44,36,32,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.25;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  width: 100%;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  gap: 8px;
}

.btn--primary {
  background: var(--rust);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139,69,19,0.3);
}

.btn--primary:hover {
  background: var(--rust-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139,69,19,0.4);
}

.btn--ghost {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--full { width: 100%; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(248,244,239,0.92);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.nav--scrolled .nav__logo { color: var(--charcoal); }

.nav__logo span {
  color: var(--gold-light);
  font-style: italic;
  margin: 0 2px;
}

.nav--scrolled .nav__logo span { color: var(--rust); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}

.nav--scrolled .nav__links a { color: var(--charcoal-light); }
.nav__links a:hover { color: var(--white); }
.nav--scrolled .nav__links a:hover { color: var(--rust); }

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--rust) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: all var(--transition) !important;
}

.nav__cta:hover {
  background: var(--rust-dark) !important;
  transform: translateY(-1px);
}

.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav--scrolled .nav__hamburger span { background: var(--charcoal); }

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

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav__links.open { right: 0; }
  .nav__links a {
    color: var(--charcoal) !important;
    font-size: 1.1rem;
  }
  .nav__links a:hover { color: var(--rust) !important; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__parallax {
  position: absolute;
  inset: -60px;
  background:
    linear-gradient(145deg, rgba(61,79,47,0.85) 0%, rgba(107,66,38,0.8) 40%, rgba(139,69,19,0.7) 100%);
  z-index: 0;
}

.hero__parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,134,11,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(61,79,47,0.2) 0%, transparent 50%);
}

.hero__parallax::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,36,32,0.3) 0%, rgba(44,36,32,0.1) 50%, rgba(44,36,32,0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero__tag {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== STORY SECTIONS ========== */
.story {
  padding: clamp(60px, 10vw, 120px) 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.story__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: clamp(60px, 10vw, 100px);
}

.story__block:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .story__block { grid-template-columns: 1fr 1fr; gap: 64px; }
  .story__block--reverse .story__image { order: 2; }
  .story__block--reverse .story__text { order: 1; }
}

.story__image { position: relative; }

.story__img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--parchment) 0%, #DED5C8 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-brown);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story__img-placeholder svg {
  width: 80px; height: 80px;
  opacity: 0.4;
}

.story__img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: 'Merriweather', serif;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--warm-brown);
  opacity: 0.5;
}

.story__number {
  font-family: 'Merriweather', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--parchment);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.story__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.story__text p {
  color: var(--charcoal-light);
  margin-bottom: 16px;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

/* ========== PRODUCT SHOWCASE ========== */
.product {
  background: var(--cream);
  padding: clamp(60px, 10vw, 120px) 24px;
}

.product__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .product__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.product__main-image { position: relative; }

.product__img-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--parchment), #D8CFBE);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--warm-brown);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}

.product__img-placeholder svg {
  width: 120px; height: auto;
  opacity: 0.35;
}

.product__img-label {
  font-family: 'Merriweather', serif;
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.5;
}

.product__thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.product__thumb {
  flex: 1;
  padding: 12px 8px;
  background: var(--parchment);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal-light);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.product__thumb.active,
.product__thumb:hover {
  border-color: var(--rust);
  color: var(--rust);
  background: var(--white);
}

.product__badge {
  display: inline-block;
  background: var(--deep-olive);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 16px;
}

.product__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.product__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

.product__rating span {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.product__price {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--rust);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.product__desc {
  color: var(--charcoal-light);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

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

.product__option-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.product__selectors {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product__sel {
  padding: 10px 18px;
  background: var(--white);
  border: 2px solid var(--parchment);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product__sel span:not(.swatch) {
  font-size: 0.72rem;
  color: var(--charcoal-light);
  font-weight: 400;
}

.swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  display: inline-block;
}

.product__sel:hover { border-color: var(--rust); }

.product__sel.active {
  border-color: var(--rust);
  background: rgba(139,69,19,0.06);
  color: var(--rust);
}

.product__ship {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--charcoal-light);
  text-align: center;
}

/* ========== BUNDLE BUILDER ========== */
.bundle {
  padding: clamp(60px, 10vw, 120px) 24px;
  background: var(--linen);
}

.bundle__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.bundle__header {
  text-align: center;
  margin-bottom: 48px;
}

.bundle__header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.bundle__header p {
  color: var(--charcoal-light);
  max-width: 500px;
  margin: 0 auto;
}

.bundle__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .bundle__grid { grid-template-columns: repeat(3, 1fr); }
}

.bundle__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
}

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

.bundle__card.selected {
  border-color: var(--deep-olive);
  background: rgba(61,79,47,0.04);
}

.bundle__card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  color: var(--warm-brown);
}

.bundle__card-icon svg { width: 100%; height: 100%; }

.bundle__card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.bundle__card p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.bundle__card-price {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--rust);
  display: block;
  margin-bottom: 16px;
}

.bundle__toggle {
  padding: 10px 28px;
  border: 2px solid var(--deep-olive);
  border-radius: var(--radius);
  color: var(--deep-olive);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.bundle__toggle:hover {
  background: var(--deep-olive);
  color: var(--white);
}

.bundle__card.selected .bundle__toggle {
  background: var(--deep-olive);
  color: var(--white);
}

.bundle__summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
  gap: 16px;
}

.bundle__total {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.bundle__total strong {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  color: var(--rust);
  transition: all 0.3s ease;
}

/* ========== REVIEWS ========== */
.reviews {
  padding: clamp(60px, 10vw, 120px) 24px;
  background: linear-gradient(180deg, var(--cream), var(--linen));
}

.reviews__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews__header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews__header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.reviews__header p {
  color: var(--charcoal-light);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .reviews__grid { grid-template-columns: repeat(4, 1fr); }
}

.review__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.review__photo-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--warm-brown);
}

.review__photo-placeholder svg { width: 36px; height: 36px; opacity: 0.5; }

.review__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.star--half { opacity: 0.4; }

.review__text {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 14px;
  line-height: 1.7;
}

.review__author {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--warm-brown);
}

/* ========== PRICING MATRIX ========== */
.pricing {
  padding: clamp(60px, 10vw, 120px) 24px;
  background: var(--charcoal);
  color: var(--white);
}

.pricing__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing__header {
  text-align: center;
  margin-bottom: 52px;
}

.pricing__tag {
  display: inline-block;
  background: rgba(139,69,19,0.3);
  color: var(--gold-light);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing__header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.pricing__header p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .pricing__cards { grid-template-columns: repeat(3, 1fr); }
}

.pricing__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  position: relative;
}

.pricing__card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pricing__card--featured {
  border-color: var(--rust);
  background: rgba(139,69,19,0.1);
}

.pricing__ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--rust);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pricing__card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pricing__amount {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.pricing__amount span { font-size: 1.2rem; }

.pricing__card .pricing__desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.pricing__card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing__card li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
}

.pricing__card li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-size: 0.6rem;
  top: 3px;
}

.pricing__addons {
  margin-bottom: 40px;
}

.pricing__addons h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.pricing__addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .pricing__addon-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing__addon {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  transition: all var(--transition);
}

.pricing__addon:hover {
  background: rgba(255,255,255,0.08);
}

.pricing__addon-name {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.pricing__addon-price {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
}

.pricing__hosting h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.pricing__hosting-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .pricing__hosting-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing__hosting-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.pricing__hosting-card:hover {
  background: rgba(255,255,255,0.08);
}

.pricing__hosting-card--featured {
  border-color: var(--deep-olive);
  background: rgba(61,79,47,0.15);
}

.pricing__hosting-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.pricing__hosting-price {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.pricing__hosting-price span {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.6;
}

.pricing__hosting-card p:last-child {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ========== CONTACT ========== */
.contact {
  padding: clamp(60px, 10vw, 120px) 24px;
  background: var(--linen);
}

.contact__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.contact__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.contact__text > p {
  color: var(--charcoal-light);
  margin-bottom: 28px;
}

.contact__details p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--charcoal-light);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid var(--parchment);
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--charcoal);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 4px rgba(139,69,19,0.1);
}

.form__group textarea { resize: vertical; }

.form__group select { appearance: none; cursor: pointer; }

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 0;
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__logo {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}

.footer__logo span { color: var(--gold-light); font-style: italic; }

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__links h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.footer__links a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p { font-size: 0.78rem; }

.footer__badge {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 50px;
}

.footer__badge:hover { color: var(--gold-light); border-color: rgba(184,134,11,0.3); }

.footer__badge strong { color: var(--gold-light); font-weight: 700; }

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--deep-olive);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast__icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.toast__message { font-size: 0.9rem; font-weight: 600; }

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE TWEAKS ========== */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
  .product__selectors { flex-direction: column; }
  .product__sel { justify-content: center; }
  .bundle__summary { flex-direction: column; text-align: center; }
  .pricing__addon-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
