/*
  Design rationale: Deep slate-mauve paired with champagne blush and warm gold creates an atmosphere of refined elegance — aspirational yet warm — perfectly suited for a bespoke event styling brand.
  Heading: Bodoni Moda — high-contrast editorial serif evoking celebration stationery, luxury invitations, and timeless feminine elegance.
  Body: Readex Pro — clean humanist sans with excellent readability across sizes; warm personality that pairs beautifully with the display serif.
*/

/* ============================================================
   1. RESET & CUSTOM PROPERTIES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #2C2230;   /* deep slate-mauve — rich, warm, sophisticated */
  --accent:     #C8956C;   /* champagne blush-copper — warm, celebratory */
  --highlight:  #E8C99A;   /* soft warm gold — elegance, luxury */
  --light:      #FDF6F0;   /* warm ivory — clean, airy backgrounds */
  --mid:        #7A5C6E;   /* muted mauve — secondary text, borders */
  --surface:    #F5ECE3;   /* blush surface — card backgrounds */
  --text:       #2C2230;
  --text-light: #7A5C6E;
  --white:      #ffffff;
  --border:     rgba(200, 149, 108, 0.25);

  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body:    'Readex Pro', system-ui, sans-serif;

  --nav-h:      72px;
  --radius:     12px;
  --radius-sm:  6px;
  --shadow:     0 4px 24px rgba(44,34,48,0.10);
  --shadow-lg:  0 12px 48px rgba(44,34,48,0.16);

  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-light); font-size: 1rem; line-height: 1.75; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-intro p { font-size: 1.05rem; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200,149,108,0.35);
}
.btn-primary:hover {
  background: #b8845c;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,149,108,0.45);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(44,34,48,0.25);
}
.btn-dark:hover {
  background: #3e3050;
  transform: translateY(-2px);
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(44,34,48,0.25);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta { margin-left: 1.5rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   5. HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,34,48,0.78) 0%,
    rgba(44,34,48,0.55) 50%,
    rgba(122,92,110,0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(232,201,154,0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(44,34,48,0.5);
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--highlight);
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 28px; height: 28px; color: rgba(255,255,255,0.6); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   6. FEATURES STRIP
   ============================================================ */
.features {
  padding: 5rem 2rem;
  background: var(--light);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--accent); }
.feature-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.88rem; }

/* ============================================================
   7. PORTFOLIO GRID (home 3×3)
   ============================================================ */
.portfolio-section {
  padding: 5rem 2rem;
  background: var(--white);
}
.portfolio-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.portfolio-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,34,48,0.6), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-thumb:hover img { transform: scale(1.06); }
.portfolio-thumb:hover::after { opacity: 1; }
.portfolio-cta { margin-top: 3rem; }

/* ============================================================
   8. BRAND TEASER SPLIT
   ============================================================ */
.brand-teaser {
  padding: 6rem 2rem;
  background: var(--surface);
}
.brand-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brand-teaser-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.brand-teaser-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.brand-teaser-img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  border-radius: calc(var(--radius) + 8px);
  z-index: -1;
  opacity: 0.4;
}
.brand-teaser-text .section-label { display: block; }
.brand-teaser-text h2 { margin-bottom: 1.5rem; }
.brand-teaser-text p { margin-bottom: 1.2rem; }
.brand-teaser-text .btn { margin-top: 1.5rem; }

/* ============================================================
   9. STATS ROW
   ============================================================ */
.stats {
  padding: 4rem 2rem;
  background: var(--dark);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1.5rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   10. REVIEW CARDS
   ============================================================ */
.reviews {
  padding: 5rem 2rem;
  background: var(--light);
}
.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: left;
  border: 1px solid var(--border);
  position: relative;
}
.review-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; }
.review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.review-author { font-size: 0.82rem; font-weight: 600; color: var(--accent); }
.review-event { font-size: 0.78rem; color: var(--text-light); margin-top: 0.2rem; }

/* ============================================================
   11. SOCIAL CTA + PLATFORM BUTTONS
   ============================================================ */
.social-cta {
  padding: 5rem 2rem;
  background: var(--dark);
  text-align: center;
}
.social-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.social-cta p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }
.social-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(131,58,180,0.35);
}
.btn-instagram:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-facebook {
  background: #1877f2;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(24,119,242,0.35);
}
.btn-facebook:hover { background: #0d65d9; transform: translateY(-2px); }
.btn-instagram svg, .btn-facebook svg { width: 18px; height: 18px; }

/* ============================================================
   12. SOCIAL FEED GRID
   ============================================================ */
.social-feed {
  padding: 5rem 2rem;
  background: var(--surface);
  text-align: center;
}
.social-feed-inner { max-width: 1200px; margin: 0 auto; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.feed-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.feed-item:hover img { transform: scale(1.08); }
.feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,34,48,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.feed-overlay svg { width: 32px; height: 32px; color: var(--white); }
.feed-item:hover .feed-overlay { opacity: 1; }

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 5rem 2rem 0;
  border-top: 1px solid rgba(200,149,108,0.15);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer-brand { }
.footer-brand img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--accent);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--highlight);
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  transition: background var(--transition), transform var(--transition);
  color: rgba(255,255,255,0.75);
}
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-social-btn:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--highlight); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--highlight); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   14. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(44,34,48,0.82) 0%, rgba(44,34,48,0.55) 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

/* ============================================================
   15. ABOUT PAGE SECTIONS
   ============================================================ */
.about-origin {
  padding: 6rem 2rem;
  background: var(--white);
}
.about-origin-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-origin-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-origin-img img { width: 100%; height: 500px; object-fit: cover; }
.about-origin-img::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80%;
  height: 80%;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.35;
}
.about-origin-text h2 { margin-bottom: 1.5rem; }
.about-origin-text p { margin-bottom: 1.2rem; }

.philosophy {
  padding: 5rem 2rem;
  background: var(--surface);
  text-align: center;
}
.philosophy-inner { max-width: 1100px; margin: 0 auto; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.philosophy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.philosophy-card:hover { transform: translateY(-6px); }
.philosophy-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--highlight);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.philosophy-card h3 { margin-bottom: 0.75rem; }

.values {
  padding: 5rem 2rem;
  background: var(--white);
}
.values-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.values-list { margin-top: 3rem; }
.value-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  min-width: 60px;
}
.value-text h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.value-text p { font-size: 0.88rem; }

.timeline {
  padding: 5rem 2rem;
  background: var(--light);
  text-align: center;
}
.timeline-inner { max-width: 800px; margin: 0 auto; }
.timeline-track { margin-top: 3rem; position: relative; }
.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-year { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-body { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-year {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  z-index: 1;
}
.timeline-content { background: var(--white); padding: 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.timeline-content h4 { margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.85rem; }
.timeline-body { padding: 1.5rem; }

.about-cta-split {
  padding: 6rem 2rem;
  background: var(--dark);
  text-align: center;
}
.about-cta-split h2 { color: var(--white); margin-bottom: 1rem; }
.about-cta-split p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.about-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   16. PORTFOLIO PAGE
   ============================================================ */
.portfolio-disclaimer {
  background: var(--surface);
  padding: 1rem 2rem;
  text-align: center;
}
.portfolio-disclaimer p { font-size: 0.82rem; color: var(--mid); font-style: italic; }

.category-tiles {
  padding: 5rem 2rem;
  background: var(--white);
  text-align: center;
}
.category-tiles-inner { max-width: 1200px; margin: 0 auto; }
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.category-tile {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.category-tile:hover img { transform: scale(1.06); }
.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,34,48,0.85) 0%, rgba(44,34,48,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  text-align: left;
}
.tile-overlay h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.2rem; }
.tile-count {
  font-size: 0.78rem;
  color: var(--highlight);
  font-weight: 500;
}
.tile-arrow {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  background: rgba(200,149,108,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.tile-arrow svg { width: 14px; height: 14px; }
.category-tile:hover .tile-arrow { opacity: 1; }

.category-sections { padding: 0 2rem 5rem; }
.category-section {
  max-width: 1000px;
  margin: 0 auto 5rem;
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}
.category-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--border);
}
.category-section-header h2 { font-size: 1.5rem; }
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
}
.portfolio-items { display: flex; flex-direction: column; gap: 1.5rem; }
.portfolio-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  border-left: 3px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-item:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.portfolio-item h4 { margin-bottom: 0.5rem; color: var(--dark); font-size: 1rem; }
.portfolio-item p { font-size: 0.88rem; }

.portfolio-bottom-cta {
  background: var(--surface);
  padding: 5rem 2rem;
  text-align: center;
}
.portfolio-bottom-cta h2 { margin-bottom: 0.75rem; }
.portfolio-bottom-cta p { margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   17. GALLERY PAGE (masonry, lightbox)
   ============================================================ */
.gallery-filter {
  padding: 2.5rem 2rem 1rem;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--surface);
  color: var(--mid);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.gallery-section { padding: 2rem 2rem 5rem; background: var(--white); }
.gallery-section-inner { max-width: 1200px; margin: 0 auto; }
.gallery-group { margin-bottom: 4rem; }
.gallery-group-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gallery-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.masonry-grid {
  columns: 3;
  column-gap: 1.25rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.5s; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item .zoom-icon {
  position: absolute;
  inset: 0;
  background: rgba(44,34,48,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .zoom-icon { opacity: 1; }
.masonry-item .zoom-icon svg { width: 32px; height: 32px; color: var(--white); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20,14,22,0.96);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  cursor: pointer;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(200,149,108,0.6); }
.lb-close { top: 1.5rem; right: 1.5rem; width: 42px; height: 42px; border-radius: 50%; }
.lb-close svg { width: 20px; height: 20px; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; }
.lb-prev svg, .lb-next svg { width: 22px; height: 22px; }

.gallery-cta {
  background: var(--dark);
  padding: 5rem 2rem;
  text-align: center;
}
.gallery-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.gallery-cta p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 6rem 2rem;
  background: var(--white);
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2.5rem; }
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.contact-block:hover { transform: translateX(4px); }
.contact-block-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-block-icon svg { width: 18px; height: 18px; color: var(--white); }
.contact-block-text h4 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.contact-block-text a { font-size: 0.88rem; color: var(--text-light); transition: color var(--transition); }
.contact-block-text a:hover { color: var(--accent); }
.contact-block-text span { font-size: 0.88rem; color: var(--text-light); }

.map-placeholder {
  margin-top: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  border: 1px dashed var(--border);
}
.map-placeholder svg { width: 32px; height: 32px; color: var(--accent); margin-bottom: 0.75rem; }
.map-placeholder p { font-size: 0.88rem; margin-bottom: 1rem; }

.contact-form-wrap { }
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }
.inquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--dark); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
  color: #166534;
  font-weight: 500;
}

/* ============================================================
   19. FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: 6rem 2rem;
  background: var(--light);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.faq-list { margin-top: 3rem; text-align: left; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  background: none;
  width: 100%;
  text-align: left;
  gap: 1rem;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--accent); transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--accent); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 1.5rem 1.5rem; }
.faq-answer-inner p { font-size: 0.9rem; }

.contact-social-cta {
  background: var(--surface);
  padding: 5rem 2rem;
  text-align: center;
}
.contact-social-cta h2 { margin-bottom: 0.75rem; }
.contact-social-cta p { margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   20. SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 500;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200,149,108,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  border: none;
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; transform: none; pointer-events: all; }
.scroll-top svg { width: 18px; height: 18px; }

/* ============================================================
   21. FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-inner { gap: 3rem; }
  .about-origin-inner { gap: 3rem; }
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .navbar { padding: 0 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav drawer */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--dark);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open a { font-size: 1rem; }
  .nav-cta.open {
    display: block;
    padding: 0 1.5rem 2rem;
    position: fixed;
    top: calc(var(--nav-h) + 12.5rem); left: 0; right: 0;
    background: var(--dark);
    z-index: 999;
  }

  .features-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .brand-teaser-img img { height: 300px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-origin-inner { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .tiles-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .timeline-track::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.75rem; }
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(even) .timeline-year,
  .timeline-item:nth-child(even) .timeline-body { grid-column: 1; grid-row: auto; text-align: left; }
  .timeline-year { justify-self: start; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .tiles-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry-grid { columns: 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .gallery-filter { gap: 0.5rem; }
  .filter-btn { font-size: 0.76rem; padding: 0.45rem 1rem; }
}
