/* ========================================
   SREE AARADHYA CLICKS - Premium Wedding Photography
   Design System & Styles
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@100;200;300;400;500;600;700;800&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand Colors - Purple + Orange Gradient */
  --purple-deep: #3a0e56;
  --purple-brand: #5b1a8a;
  --purple-light: #7b3aaf;
  --purple-glow: #9b59c5;
  --orange-brand: #e87c1e;
  --orange-light: #f5a623;
  --orange-glow: #ffbf47;
  --gold: #d4a843;
  --gold-light: #f0d78c;
  
  /* Neutral Palette */
  --black: #0a0a0a;
  --black-light: #111111;
  --dark-bg: #0d0d0d;
  --dark-card: #151515;
  --dark-card-hover: #1c1c1c;
  --dark-surface: #1a1a1a;
  --gray-900: #1f1f1f;
  --gray-800: #2a2a2a;
  --gray-700: #3a3a3a;
  --gray-600: #555555;
  --gray-400: #888888;
  --gray-300: #aaaaaa;
  --gray-200: #cccccc;
  --white: #f5f5f5;
  --white-pure: #ffffff;
  
  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--purple-brand) 0%, var(--orange-brand) 100%);
  --gradient-brand-hover: linear-gradient(135deg, var(--purple-light) 0%, var(--orange-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--orange-light) 100%);
  --gradient-dark: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.95) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;
  
  /* Borders & Shadows */
  --border-subtle: 1px solid rgba(255,255,255,0.06);
  --border-gold: 1px solid rgba(212,168,67,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow-purple: 0 0 40px rgba(91,26,138,0.3);
  --shadow-glow-orange: 0 0 40px rgba(232,124,30,0.2);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--gray-300);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ---- Utility Classes ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white-pure);
  box-shadow: 0 4px 20px rgba(91,26,138,0.3);
}

.btn-primary:hover {
  background: var(--gradient-brand-hover);
  box-shadow: 0 6px 30px rgba(91,26,138,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(212,168,67,0.5);
  color: var(--gold-light);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212,168,67,0.1);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--black);
  font-weight: 700;
}

.btn-gold:hover {
  box-shadow: 0 6px 30px rgba(212,168,67,0.4);
  transform: translateY(-2px);
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 30px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
  filter: brightness(0) invert(1); /* Makes the logo pure white */
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0;
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 2px;
  animation: preloaderFill 2s ease forwards;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ---- Topbar ---- */
.topbar {
  background: var(--white-pure);
  color: var(--black);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  min-height: 40px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
}

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

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

.nav-logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition-smooth);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-300);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition-smooth);
}

.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 {
  padding: 10px 24px !important;
  background: var(--gradient-brand) !important;
  color: var(--white-pure) !important;
  border-radius: 4px !important;
  letter-spacing: 1px !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(91,26,138,0.4) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20px) scale(1); }
}

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

.hero-logo {
  width: 180px;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease 0.5s backwards;
  filter: brightness(0) invert(1);
}

.hero-tagline {
  font-family: var(--font-elegant);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  animation: fadeInDown 1s ease 0.5s backwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white-pure);
  line-height: 1.15;
  margin-bottom: 12px;
  animation: fadeInUp 1s ease 0.7s backwards;
}

.hero-title .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-experience {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.9s backwards;
}

.hero-experience strong {
  color: var(--orange-light);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.1s backwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1.5s backwards;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-400);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gray-700);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gradient-brand);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ---- Highlights Bar ---- */
.highlights {
  position: relative;
  padding: 60px 0;
  background: var(--dark-card);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.highlight-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.highlight-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gray-700), transparent);
}

.highlight-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.highlight-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---- About Section ---- */
.about {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91,26,138,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(212,168,67,0.3);
  border-radius: 8px;
  z-index: -1;
}

.about-content {
  padding: 20px 0;
}

.about-content .section-eyebrow {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--gray-300);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--dark-card);
  border-radius: 6px;
  border: var(--border-subtle);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white-pure);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-200);
}

/* ---- Portfolio / Gallery Section ---- */
.portfolio {
  padding: var(--section-padding);
  background: var(--dark-bg);
}

.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  border: 1px solid var(--gray-700);
  border-radius: 4px;
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.filter-btn:hover {
  color: var(--white);
  border-color: var(--gray-600);
}

.filter-btn.active {
  background: var(--gradient-brand);
  color: var(--white-pure);
  border-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  group: true;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-smooth);
}

.portfolio-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.portfolio-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.portfolio-item:hover .portfolio-item-overlay {
  transform: translateY(0);
}

.portfolio-item-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-item-overlay p {
  font-size: 0.8rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.portfolio-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  border-radius: 50%;
  color: var(--white-pure);
  font-size: 1.2rem;
  transition: transform var(--transition-smooth);
  opacity: 0;
}

.portfolio-item:hover .portfolio-zoom {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* ---- Services Section ---- */
.services {
  padding: var(--section-padding);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,124,30,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark-card);
  border: var(--border-subtle);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--dark-card-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(91,26,138,0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(91,26,138,0.15), rgba(232,124,30,0.15));
  font-size: 1.5rem;
  transition: all var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gradient-brand);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ---- Invitations Section ---- */
.invitations {
  padding: var(--section-padding);
  background: var(--dark-bg);
}

.invitations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.invitation-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-card);
  border: var(--border-subtle);
  transition: all var(--transition-smooth);
}

.invitation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.invitation-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.invitation-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, var(--dark-card));
}

.invitation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.invitation-card:hover .invitation-image img {
  transform: scale(1.05);
}

.invitation-content {
  padding: 24px;
  text-align: center;
}

.invitation-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.invitation-content p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

/* ---- Photo Frames Section ---- */
.frames {
  padding: var(--section-padding);
}

.frames-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.frame-card {
  background: var(--dark-card);
  border: var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  text-align: center;
}

.frame-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(212,168,67,0.3);
}

.frame-preview {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(91,26,138,0.05), rgba(232,124,30,0.05));
  position: relative;
}

.frame-mock {
  width: 120px;
  height: 150px;
  border: 8px solid;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gray-600);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.frame-mock::before {
  content: '📷';
  font-size: 2rem;
  opacity: 0.3;
}

.frame-mock.gold-frame {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 2px rgba(212,168,67,0.3), 0 4px 20px rgba(212,168,67,0.1);
}

.frame-mock.silver-frame {
  border-color: #c0c0c0;
  box-shadow: inset 0 0 0 2px rgba(192,192,192,0.3), 0 4px 20px rgba(192,192,192,0.1);
}

.frame-mock.wood-frame {
  border-color: #8B4513;
  box-shadow: inset 0 0 0 2px rgba(139,69,19,0.3), 0 4px 20px rgba(139,69,19,0.1);
}

.frame-mock.modern-frame {
  border-color: var(--gray-600);
  border-width: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.frame-card:hover .frame-mock {
  transform: scale(1.05);
}

.frame-info {
  padding: 20px;
}

.frame-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}

.frame-info p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ---- Testimonials Section ---- */
.testimonials {
  padding: var(--section-padding);
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(91,26,138,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--orange-light);
  font-size: 1.2rem;
}

.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.4rem;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.testimonial-author strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--gold-light);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.testimonial-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,67,0.1);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--gradient-brand);
  width: 24px;
  border-radius: 4px;
}

/* ---- Blog Section ---- */
.blog {
  padding: var(--section-padding);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--dark-card);
  border: var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.blog-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-brand);
  color: var(--white-pure);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.blog-content {
  padding: 24px;
}

.blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: inline-block;
}

.blog-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.blog-link:hover {
  gap: 12px;
  color: var(--orange-brand);
}

/* ---- Enquiry / Contact Section ---- */
.enquiry {
  padding: var(--section-padding);
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.enquiry::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,26,138,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.enquiry-info {
  padding: 20px 0;
}

.enquiry-info .section-title {
  text-align: left;
}

.enquiry-info .section-subtitle {
  text-align: left;
  margin: 0 0 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(91,26,138,0.15), rgba(232,124,30,0.15));
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--purple-brand);
  color: var(--white);
  background: var(--gradient-brand);
  transform: translateY(-3px);
}

.enquiry-form {
  background: var(--dark-card);
  border: var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
}

.enquiry-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 18px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-brand);
  box-shadow: 0 0 0 3px rgba(91,26,138,0.15);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-600);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ---- Map Section ---- */
.map-section {
  height: 400px;
  background: var(--dark-card);
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--gray-900) 100%);
  color: var(--gray-600);
  font-size: 1rem;
}

/* ---- Footer ---- */
.footer {
  padding: 60px 0 0;
  background: var(--dark-card);
  border-top: var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1); /* Makes the logo pure white */
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-brand);
}

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

.footer-column a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-column a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  border-top: var(--border-subtle);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.footer-bottom a {
  color: var(--gold-light);
}

/* ---- WhatsApp Float Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-pure);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition-fast);
  cursor: pointer;
  animation: whatsappPulse 2s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* ---- Scroll Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Keyframes ---- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ---- Package Cards ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  background: var(--dark-card);
  border: var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
}

.package-card.featured {
  border-color: rgba(212,168,67,0.4);
  transform: scale(1.03);
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-gold);
  color: var(--black);
  padding: 6px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  z-index: 2;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-header {
  padding: 30px;
  text-align: center;
  border-bottom: var(--border-subtle);
}

.package-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.package-header .package-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.package-body {
  padding: 30px;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-300);
}

.package-feature .check {
  color: var(--orange-light);
  font-weight: bold;
}

.package-cta {
  width: 100%;
  text-align: center;
}

/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .invitations-grid { grid-template-columns: repeat(2, 1fr); }
  .frames-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .enquiry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .package-card.featured { transform: scale(1); }
  .package-card.featured:hover { transform: translateY(-8px); }
}

/* ==============================
   MOBILE — 768px and below
   ============================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 20px;
  }

  /* --- Navbar --- */
  .navbar { padding: 14px 0; }
  .navbar.scrolled { padding: 10px 0; }

  .nav-container { padding: 0 20px; }

  .nav-logo img { height: 42px; }
  .navbar.scrolled .nav-logo img { height: 36px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    padding: 80px 36px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(91,26,138,0.3);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  .nav-links.active { right: 0; }

  .nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a:last-of-type { border-bottom: none; }

  .nav-cta {
    margin-top: 16px !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    font-size: 1rem !important;
  }
  .nav-toggle { display: flex; }

  /* --- Hero --- */
  .hero { height: 100svh; min-height: 620px; }

  .hero-logo {
    width: 130px;
    margin-bottom: 18px;
  }

  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.8rem);
    margin-bottom: 10px;
  }

  .hero-experience {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 15px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  /* --- Highlights Bar --- */
  .highlights { padding: 40px 0; }

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

  .highlight-item {
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .highlight-item:nth-child(2n) { border-right: none; }
  .highlight-item:nth-child(3),
  .highlight-item:nth-child(4) { border-bottom: none; }
  .highlight-item::after { display: none; }

  .highlight-number { font-size: 2.2rem; }
  .highlight-label { font-size: 0.75rem; letter-spacing: 1.5px; }

  /* --- Section Headers --- */
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-subtitle { font-size: 1rem; }

  /* --- About --- */
  .about-grid { grid-template-columns: 1fr; gap: 30px; }

  .about-image img { height: 280px; border-radius: 12px; }
  .about-image-accent { display: none; }

  .about-content { padding: 0; }
  .about-content .section-title,
  .about-content .section-eyebrow { text-align: left; }

  .about-text { font-size: 1rem; line-height: 1.8; }

  .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
    padding: 14px 10px;
    gap: 8px;
  }

  .about-feature span { font-size: 0.82rem; }

  /* --- Portfolio --- */
  .portfolio-filters {
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .portfolio-filters::-webkit-scrollbar { display: none; }

  .filter-btn {
    padding: 9px 18px;
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 20px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Show overlay always on mobile (no hover) */
  .portfolio-item-overlay { transform: translateY(0); }
  .portfolio-zoom { display: none; }

  /* --- Services --- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px 22px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 18px;
  }

  .service-icon {
    margin: 0;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .service-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .service-card p { font-size: 0.88rem; }

  /* --- Invitations --- */
  .invitations-grid { grid-template-columns: 1fr; gap: 20px; }
  .invitation-image { height: 200px; }

  /* --- Frames --- */
  .frames-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .frame-preview { height: 160px; padding: 20px; }
  .frame-mock { width: 90px; height: 110px; }

  /* --- Testimonials --- */
  .testimonial-text { font-size: 1.05rem; padding: 0 8px; }
  .testimonials::before { font-size: 10rem; }

  /* --- Blog --- */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-image { height: 200px; }

  /* --- Enquiry Form --- */
  .enquiry-grid { grid-template-columns: 1fr; gap: 36px; }
  .enquiry-info .section-title,
  .enquiry-info .section-eyebrow { text-align: left; }
  .enquiry-info .section-subtitle { margin: 0 0 24px; text-align: left; }

  .enquiry-form { padding: 28px 20px; border-radius: 12px; }
  .enquiry-form h3 { font-size: 1.3rem; margin-bottom: 20px; }

  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .form-group { margin-bottom: 14px; }

  .contact-details { gap: 16px; margin-bottom: 28px; }
  .contact-icon { width: 42px; height: 42px; font-size: 1rem; border-radius: 10px; }

  /* --- Map --- */
  .map-section { height: 280px; }

  /* --- Footer --- */
  .footer { padding: 44px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-logo { height: 50px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 0;
  }
  .footer-bottom p { font-size: 0.8rem; }

  /* --- WhatsApp --- */
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }
}

/* ==============================
   SMALL MOBILE — 480px and below
   ============================== */
@media (max-width: 480px) {
  :root { --container-padding: 0 16px; }

  .hero-logo { width: 110px; }
  .hero-tagline { font-size: 0.72rem; letter-spacing: 3px; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }

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

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

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

  .service-card { flex-direction: column; text-align: center; }
  .service-icon { margin: 0 auto; }

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

  .section-eyebrow { font-size: 0.7rem; letter-spacing: 3px; }

  .btn { padding: 13px 22px; font-size: 0.85rem; }

  .social-link { width: 40px; height: 40px; font-size: 1rem; }

  .testimonial-text { font-size: 1rem; }

  .nav-links { width: 85vw; padding: 80px 28px 40px; }
  .nav-links a { font-size: 1rem; }
}

/* ==============================
   TINY SCREENS — 360px and below
   ============================== */
@media (max-width: 360px) {
  .hero-title { font-size: 1.6rem; }
  .hero-logo { width: 95px; }
  .highlight-number { font-size: 1.9rem; }
  .section-title { font-size: 1.5rem; }
}


