/* ===========================
   Pretty Brown Paper - Styles
   Mobile-first responsive
   =========================== */

/* --- CSS Custom Properties --- */
:root {
  --cream: #FAF6F0;
  --kraft: #C4A882;
  --kraft-light: #D9C9AC;
  --kraft-dark: #A8895E;
  --brown: #3B2417;
  --brown-light: #5C3D2E;
  --coral: #E8836B;
  --coral-dark: #D4684F;
  --gold: #D4A843;
  --sage: #8FA885;
  --near-black: #2A1810;
  --white: #FFFFFF;

  --font-heading: 'Caveat', cursive;
  --font-subheading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(59, 36, 23, 0.1);
  --shadow-hover: 0 8px 30px rgba(59, 36, 23, 0.18);
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  color: var(--brown);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover { color: var(--coral-dark); }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background-color: var(--white);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--brown);
  text-align: center;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.section__title--left {
  text-align: left;
}

.section__title-decoration {
  width: 120px;
  margin: 0 auto 2rem;
  color: var(--coral);
}

.section__title-decoration--left {
  margin-left: 0;
}

.section__title-decoration svg {
  width: 100%;
  height: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn--primary {
  background-color: var(--coral);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--coral-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn--secondary {
  background-color: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}

.btn--secondary:hover {
  background-color: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  transition: background var(--transition);
}

.nav--scrolled {
  background: rgba(250, 246, 240, 0.98);
  box-shadow: 0 2px 20px rgba(59, 36, 23, 0.08);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
}

.nav__logo {
  text-decoration: none;
  color: var(--brown);
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
}

.nav__logo-text strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--cream);
  padding: 5rem 2rem 2rem;
  transition: right var(--transition);
  box-shadow: -4px 0 30px rgba(42, 24, 16, 0.15);
}

.nav__menu.open {
  right: 0;
}

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav__link {
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  color: var(--brown);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover {
  color: var(--coral);
}

.nav__link--cta {
  background-color: var(--coral);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
}

.nav__link--cta:hover {
  background-color: var(--coral-dark);
  color: var(--white) !important;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 168, 130, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(232, 131, 107, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #C4A882 0%, #B89B72 40%, #A8895E 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(59, 36, 23, 0.03) 2px,
      rgba(59, 36, 23, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(59, 36, 23, 0.02) 3px,
      rgba(59, 36, 23, 0.02) 6px
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  max-width: 700px;
}

.hero__logo {
  margin-bottom: 2rem;
}

.hero__logo-circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, #D9C9AC 0%, #C4A882 60%, #B89B72 100%);
  border: 3px solid var(--brown);
  box-shadow: 0 4px 20px rgba(42, 24, 16, 0.25);
  line-height: 1.1;
}

.hero__logo-pretty {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brown);
  margin-top: 0.3rem;
}

.hero__logo-brown {
  font-family: var(--font-subheading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__logo-paper {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--brown);
}

.hero__title {
  font-family: var(--font-subheading);
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  color: var(--white);
  text-shadow: 0 2px 10px rgba(42, 24, 16, 0.3);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero__cta {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.hero__scroll-hint {
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===========================
   GALLERY
   =========================== */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery__filter {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-light);
  background: var(--white);
  border: 2px solid var(--kraft-light);
  transition: all var(--transition);
}

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

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

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--kraft-light), var(--kraft));
  transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.gallery__item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  padding: 1rem;
  text-align: center;
}

.gallery__item-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 24, 16, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-caption {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.gallery__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery__cta-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.gallery__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--coral);
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition);
}

.gallery__cta-link:hover {
  color: var(--coral-dark);
  transform: translateX(4px);
}

.gallery__cta-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ===========================
   REVIEWS
   =========================== */
.reviews__carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
}

.reviews__carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--kraft);
  transition: transform var(--transition);
}

.review-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.review-card__star {
  color: var(--gold);
  font-size: 1.2rem;
}

.review-card__star--empty {
  color: var(--kraft-light);
}

.review-card__text {
  font-style: italic;
  line-height: 1.7;
  color: var(--brown-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-card__text::before { content: "\201C"; }
.review-card__text::after { content: "\201D"; }

.review-card__author {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brown);
  font-weight: 600;
}

.review-card__occasion {
  font-size: 0.85rem;
  color: var(--kraft-dark);
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--kraft-light);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.reviews__dot--active {
  background: var(--coral);
}

/* ===========================
   PRICING
   =========================== */
.pricing__note {
  text-align: center;
  color: var(--brown-light);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pricing__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

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

.pricing__card--featured {
  border: 2px solid var(--coral);
  background: linear-gradient(to bottom, rgba(232, 131, 107, 0.05), var(--white));
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.pricing__icon {
  width: 80px;
  height: 50px;
  margin: 0 auto 1rem;
  color: var(--kraft-dark);
}

.pricing__icon svg {
  width: 100%;
  height: 100%;
}

.pricing__tier {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.pricing__size {
  font-size: 0.9rem;
  color: var(--kraft-dark);
  margin-bottom: 0.75rem;
}

.pricing__price {
  font-family: var(--font-subheading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.pricing__desc {
  font-size: 0.9rem;
  color: var(--brown-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--brown);
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.pricing__subtitle-desc {
  text-align: center;
  color: var(--brown-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Design Level Cards --- */
.pricing__design-levels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.design-level__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

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

.design-level__card--featured {
  border: 2px solid var(--coral);
  background: linear-gradient(to bottom, rgba(232, 131, 107, 0.05), var(--white));
}

.design-level__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.design-level__price {
  font-family: var(--font-subheading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.design-level__features {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.6;
}

.design-level__features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.3rem;
}

.design-level__features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* --- Add-On Cards --- */
.pricing__addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.addon__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.addon__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.addon__name {
  font-weight: 700;
  color: var(--brown);
  font-size: 0.95rem;
  flex: 1;
}

.addon__price {
  font-family: var(--font-subheading);
  font-weight: 700;
  color: var(--coral);
  font-size: 1.05rem;
  white-space: nowrap;
}

.addon__note {
  font-size: 0.8rem;
  color: var(--kraft-dark);
  font-style: italic;
  white-space: nowrap;
}

/* --- Checkbox Group (Order Form) --- */
.order__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing__rush {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(232, 131, 107, 0.08), rgba(212, 168, 67, 0.08));
  border: 1px dashed var(--coral);
  border-radius: var(--radius-sm);
  color: var(--brown);
  font-size: 0.95rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.steps__item {
  text-align: center;
  max-width: 320px;
}

.steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.steps__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  color: var(--kraft-dark);
}

.steps__icon svg {
  width: 100%;
  height: 100%;
}

.steps__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.steps__desc {
  font-size: 0.95rem;
  color: var(--brown-light);
  line-height: 1.6;
}

.steps__connector {
  width: 40px;
  color: var(--kraft);
  transform: rotate(90deg);
}

.steps__connector svg {
  width: 100%;
  height: auto;
}

/* ===========================
   FAQ
   =========================== */
.faq__list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq__item[open] {
  box-shadow: var(--shadow-hover);
}

.faq__question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__question:hover {
  color: var(--coral);
}

.faq__answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--brown-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===========================
   ORDER FORM
   =========================== */
.order__intro {
  text-align: center;
  color: var(--brown-light);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.order__form {
  max-width: 700px;
  margin: 0 auto;
}

.order__fieldset {
  border: none;
  margin-bottom: 2rem;
  padding: 0;
}

.order__legend {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 1rem;
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--kraft-light);
}

.order__field {
  margin-bottom: 1.25rem;
}

.order__field-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.order__label {
  display: block;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.order__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--kraft-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brown);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.order__input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 131, 107, 0.15);
}

.order__input::placeholder {
  color: var(--kraft);
}

.order__textarea {
  resize: vertical;
  min-height: 80px;
}

select.order__input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%233B2417' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.order__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.order__radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.order__radio input[type="radio"] {
  accent-color: var(--coral);
  width: 18px;
  height: 18px;
}

.order__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.order__checkbox input[type="checkbox"] {
  accent-color: var(--coral);
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.order__field--conditional {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.order__submit {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 2rem auto 0;
  font-size: 1.1rem;
  padding: 1rem;
}

.order__input--error {
  border-color: #D94F4F;
}

.order__error-message {
  color: #D94F4F;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* Confirmation */
.order__confirmation {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.order__confirmation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--sage);
}

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

.order__confirmation-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.order__confirmation-text {
  color: var(--brown-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===========================
   ABOUT
   =========================== */
.about__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about__image {
  width: 100%;
  max-width: 350px;
}

.about__image-placeholder {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--kraft-light), var(--kraft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brown);
}

.about__content {
  max-width: 500px;
}

.about__text {
  margin-bottom: 1rem;
  color: var(--brown-light);
  line-height: 1.8;
}

.about__text:first-of-type {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brown);
}

.about__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--coral);
  font-weight: 700;
  margin-top: 0.5rem;
  transition: all var(--transition);
}

.about__instagram:hover {
  color: var(--coral-dark);
  transform: translateX(4px);
}

.about__instagram svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
}

.footer__logo strong {
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer__social {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer__social:hover {
  color: var(--coral);
}

.footer__social svg {
  width: 28px;
  height: 28px;
}

.footer__email {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer__email:hover {
  color: var(--coral);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  transition: opacity var(--transition);
}

.lightbox__close:hover { opacity: 0.7; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 3rem;
  padding: 1rem;
  transition: opacity var(--transition);
}

.lightbox__prev { left: 0.5rem; }
.lightbox__next { right: 0.5rem; }
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 0.7; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE — 480px+
   =========================== */
@media (min-width: 480px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    flex: 0 0 70%;
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__addons {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   RESPONSIVE — 768px+
   =========================== */
@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .nav__list {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .nav__link {
    font-size: 1rem;
  }

  .review-card {
    flex: 0 0 48%;
  }

  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing__design-levels {
    grid-template-columns: repeat(3, 1fr);
  }

  .order__field-group {
    flex-direction: row;
  }

  .order__field-group > .order__field {
    flex: 1;
  }

  .about__grid {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .about__image {
    flex: 0 0 280px;
  }

  .about__content {
    flex: 1;
  }

  .steps {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .steps__connector {
    transform: none;
    width: 50px;
    flex-shrink: 0;
  }

  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ===========================
   RESPONSIVE — 1024px+
   =========================== */
@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .review-card {
    flex: 0 0 32%;
  }

  .pricing__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .hero__logo-circle {
    width: 200px;
    height: 200px;
  }

  .hero__logo-pretty { font-size: 1.7rem; }
  .hero__logo-brown { font-size: 2.5rem; }
  .hero__logo-paper { font-size: 2rem; }
}

/* ===========================
   RESPONSIVE — 1280px+
   =========================== */
@media (min-width: 1280px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .container {
    padding: 0 2rem;
  }
}
