/* ============================================
   PRINCE WILLIAMS PHOTOGRAPHY
   Design System — Exact Bedge Pictures Replica
   ============================================ */

/* ===== FONTS ===== */
.font-cormorant { font-family: 'Cormorant Garamond', serif; }
.font-montserrat { font-family: 'Montserrat', sans-serif; }
.font-script { font-family: 'Great Vibes', cursive; }

/* ===== CSS VARIABLES ===== */
:root {
  /* Light Mode */
  --bg: #FFFFFF;
  --text: #000000;
  --text-muted: #525252;
  --text-secondary: #4B5563;
  --border: #E5E7EB;
  --section-tint: rgba(0,0,0,0.05);
  --card-bg: #000000;
  --card-text: #FFFFFF;
  --card-text-muted: rgba(255,255,255,0.8);
  --nav-bg: rgba(255,255,255,0.95);
  --btn-bg: #000000;
  --btn-text: #FFFFFF;
  --btn-portfolio-bg: #FFFFFF;
  --btn-portfolio-text: #000000;
  --badge-bg: rgba(255,255,255,0.9);
  --badge-text: #000000;
  --testimonial-btn-bg: #F3F4F6;
  --input-border: #E5E7EB;
  --input-bg: #FFFFFF;
  --footer-link: #4B5563;
  --footer-link-hover: #1f2937;
  --faq-bg: rgba(0,0,0,0.05);
  --dropdown-bg: #FFFFFF;
  --dropdown-shadow: rgba(0,0,0,0.1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
}

[data-theme="dark"] {
  --bg: #000000;
  --text: #FFFFFF;
  --text-muted: #A3A3A3;
  --text-secondary: #9CA3AF;
  --border: #404040;
  --section-tint: rgba(255,255,255,0.1);
  --card-bg: #FFFFFF;
  --card-text: #000000;
  --card-text-muted: rgba(0,0,0,0.8);
  --nav-bg: rgba(0,0,0,0.95);
  --btn-bg: #FFFFFF;
  --btn-text: #000000;
  --btn-portfolio-bg: #000000;
  --btn-portfolio-text: #FFFFFF;
  --badge-bg: rgba(0,0,0,0.8);
  --badge-text: #FFFFFF;
  --testimonial-btn-bg: #262626;
  --input-border: #404040;
  --input-bg: #111111;
  --footer-link: #A3A3A3;
  --footer-link-hover: #E5E7EB;
  --faq-bg: rgba(255,255,255,0.1);
  --dropdown-bg: #111111;
  --dropdown-shadow: rgba(255,255,255,0.05);
  --shadow-sm: 0 1px 3px rgba(255,255,255,0.05);
  --shadow-md: 0 4px 6px rgba(255,255,255,0.05);
  --shadow-xl: 0 20px 25px rgba(255,255,255,0.05);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  opacity: 0;
  animation: pageFadeIn 0.5s ease-in-out forwards;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #555; border-radius: 5px; }

/* ===== UNDERLINE UTILITY ===== */
.underline { text-decoration: underline; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  transition: background 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; }

.logo-text {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: opacity 0.2s;
  line-height: 1;
}
.logo-text:hover { opacity: 0.7; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.25rem 0;
  position: relative;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link:hover { opacity: 0.65; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }

.chevron {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  width: 180px;
  background: var(--dropdown-bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px var(--dropdown-shadow);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  transition: background 0.15s, opacity 0.15s;
}
.dropdown-item:hover { background: var(--section-tint); opacity: 0.85; }

/* Actions (theme + hamburger) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Nav Login Button */
.btn-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0.375rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-nav-login:hover { opacity: 0.8; transform: scale(0.96); }

.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text);
  background: var(--section-tint);
  transition: background 0.2s, transform 0.2s;
}
.theme-btn:hover { transform: scale(1.1); }

.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text);
  border-radius: 0.375rem;
  transition: background 0.2s;
}
.hamburger-btn:hover { background: var(--section-tint); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(80vw, 360px);
  height: 100vh;
  background: var(--bg);
  z-index: 500;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: 50%;
  background: var(--section-tint);
}

.mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; }

.mobile-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover { opacity: 0.65; padding-left: 0.5rem; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.visible { opacity: 1; pointer-events: all; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1.25rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 42rem;
  gap: 1.5rem;
  animation: heroSlideUp 0.8s 0.3s ease both;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  color: #D1D5DB;
  max-width: 30rem;
  line-height: 1.7;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #FFFFFF;
  color: #000000;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.btn-hero:hover { opacity: 0.85; transform: scale(0.96); }

[data-theme="dark"] .btn-hero {
  background: #000000;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
}

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

/* ============================================
   PRESS / FEATURED IN
   ============================================ */
.press-section {
  background: var(--section-tint);
  padding: 2.5rem 1.25rem 3rem;
  text-align: center;
}

.press-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2.5rem;
}

.press-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.75;
}
.press-logo:hover { color: var(--text); opacity: 1; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 7rem 1.25rem;
}

.about-container {
  width: min(90%, 52rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.about-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 40rem;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { opacity: 0.8; transform: scale(0.95); }

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
  padding: 0 0 3rem;
  margin-top: 6rem;
}

.portfolio-inner {
  width: min(100%, 90%);
  margin: 0 auto;
  background: var(--card-bg);
  color: var(--card-text);
  border-radius: 0.75rem;
  padding: 3.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.portfolio-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  color: var(--card-text);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.portfolio-desc {
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  color: var(--card-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 34rem;
}

.btn-portfolio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--btn-portfolio-bg);
  color: var(--btn-portfolio-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-portfolio:hover { opacity: 0.8; transform: scale(0.95); }

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

.portfolio-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card-img { opacity: 0.85; transform: scale(1.03); }

.portfolio-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s;
}
.portfolio-card:hover .portfolio-card-badge { transform: scale(0.95); }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  padding: 5rem 1.25rem;
}

.blog-container {
  width: min(90%, 64rem);
  margin: 0 auto;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.blog-visit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: opacity 0.2s, transform 0.2s;
}
.blog-visit-link:hover { opacity: 0.7; transform: scale(0.97); text-decoration: underline; }

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

.blog-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-xl); }

.blog-card-featured { height: 500px; }
.blog-card-small { height: 280px; }

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  z-index: 1;
}

.blog-card-content {
  position: absolute;
  z-index: 2;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
}

.blog-card-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.625rem;
}

.blog-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.85);
  color: #000;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  letter-spacing: 0.03em;
}

.blog-card-title {
  color: #FFFFFF;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.blog-card-excerpt {
  color: rgba(255,255,255,0.88);
  font-size: 0.8125rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   FAQs SECTION
   ============================================ */
.faqs-section {
  background: var(--faq-bg);
  padding: 4rem 1.25rem;
}

.faqs-container {
  width: min(90%, 64rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faqs-left { max-width: 28rem; }

.faqs-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.faqs-desktop-btn { display: none; }

.faqs-right { flex: 1; }

.faq-accordion { display: flex; flex-direction: column; }

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

.faq-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  letter-spacing: 0.04em;
  gap: 1rem;
  transition: opacity 0.2s;
}
.faq-toggle:hover { opacity: 0.75; }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq-toggle[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 5rem 1.25rem;
}

.testimonials-container {
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-slider { text-align: center; }

.testimonial-quote {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.testimonial-quote blockquote {
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 40rem;
  margin: 0 auto;
  transition: opacity 0.5s ease;
  position: relative;
}

.testimonial-quote blockquote::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--section-tint);
  position: absolute;
  top: -2rem;
  left: -1.5rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  transition: opacity 0.5s;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  transition: opacity 0.5s;
}

.testimonial-event {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: opacity 0.5s;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--testimonial-btn-bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.testimonial-btn:hover { transform: scale(0.93); }

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.testimonial-dot.active { background: var(--text); transform: scale(1.3); }

/* ============================================
   SHOP / PRESETS BANNER
   ============================================ */
.shop-section { padding: 2rem 1rem 3rem; }

.shop-wrapper { max-width: 64rem; margin: 0 auto; padding: 0 0.5rem; }

.shop-inner {
  background: var(--card-bg);
  color: var(--card-text);
  border-radius: 0.75rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-xl);
}

.shop-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--card-text-muted);
  margin-bottom: 0.25rem;
}

.shop-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--card-text);
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--btn-portfolio-bg);
  color: var(--btn-portfolio-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-shop:hover { opacity: 0.8; transform: scale(0.95); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 5rem 1.25rem;
  max-width: 80rem;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

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

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

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

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 0.75rem 0.875rem;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 0.375rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px var(--section-tint);
}
.form-input::placeholder { color: var(--text-muted); opacity: 0.65; }

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

select.form-input { appearance: none; cursor: pointer; }

.form-success {
  padding: 1rem;
  background: rgba(0, 150, 70, 0.1);
  border: 1px solid rgba(0, 150, 70, 0.3);
  border-radius: 0.375rem;
  color: #006a30;
  font-size: 0.9rem;
  text-align: center;
}
[data-theme="dark"] .form-success { color: #4ade80; border-color: rgba(74, 222, 128, 0.3); background: rgba(74, 222, 128, 0.08); }

.contact-img-wrap {
  display: none;
  border-radius: 0.75rem;
  overflow: hidden;
}
.contact-img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 0 0 0;
  border-top: none;
}

.footer-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.footer-brand {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 0.7; }

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--section-tint);
  color: var(--text);
  transition: transform 0.2s, background 0.2s;
}
.social-link:hover { transform: scale(1.1); background: var(--btn-bg); color: var(--btn-text); }

.footer-col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-link {
  font-size: 0.875rem;
  color: var(--footer-link);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-link:hover { color: var(--footer-link-hover); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--btn-bg);
  color: var(--btn-text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { transform: scale(0.93); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); }

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 60rem;
  margin: 0 auto;
  align-items: flex-start;
}

.cookie-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn-cookie-accept {
  padding: 0.5rem 1.25rem;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: opacity 0.2s;
}
.btn-cookie-accept:hover { opacity: 0.8; }

.btn-cookie-decline {
  padding: 0.5rem 1.25rem;
  background: #6B7280;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: opacity 0.2s;
}
.btn-cookie-decline:hover { opacity: 0.8; }

/* ============================================
   RESPONSIVE — TABLET (≥768px)
   ============================================ */
@media (min-width: 768px) {

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

  .blog-card-featured {
    grid-column: 1 / -1;
    height: 480px;
  }

  .blog-card-small { height: 260px; }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .shop-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (≥1024px)
   ============================================ */
@media (min-width: 1024px) {

  .hamburger-btn { display: none !important; }

  .nav-menu { display: flex !important; }

  .portfolio-inner {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 3.5rem;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card-featured {
    grid-column: 1;
    grid-row: 1 / 3;
    height: auto;
    min-height: 580px;
  }
  .blog-card-small { height: 270px; }

  .faqs-container {
    flex-direction: row;
    gap: 4rem;
  }
  .faqs-left { flex: 0 0 280px; }
  .faqs-desktop-btn { display: inline-flex; }
  .faqs-right { flex: 1; }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-img-wrap { display: block; }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand { grid-column: auto; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================ */
@media (max-width: 767px) {

  .hamburger-btn { display: flex; }
  .nav-menu { display: none; }

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

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ============================================
   ACCESSIBILITY & FOCUS
   ============================================ */
:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================
   SELECTION COLOR
   ============================================ */
::selection {
  background: rgba(62, 13, 98, 0.2);
  color: var(--text);
}
