/*
 * Eye Candy Manila Event Styling Co. — styles.css
 *
 * PALETTE RATIONALE:
 * --dark: #0A0A12 — near-pure midnight black, evokes the dramatic elegance of a styled event venue at night
 * --accent: #B8967A — muted rose-gold / dusty blush, warm and glamorous without being garish
 * --highlight: #D4B896 — champagne / warm ivory-gold, evokes candlelit tablescapes and floral arrangements
 * --cream: #FAF8F5 — warm near-white, soft and bridal, pairs beautifully with dark
 * --bg-alt: #13131E — deep near-black with a slight cool violet cast, adds depth to dark sections
 *
 * This palette is grounded in the brand name: "Eye Candy" = visually stunning, glamorous, aspirational.
 * The rose-gold accent is the signature color of luxury Philippine event styling, and is NOT present
 * in any prior aisite.ph build (previous builds used terracotta, orange, teal, blue, green, crimson, etc.)
 *
 * FONTS:
 * Display: Cormorant Garamond — a refined, editorial Garamond revival with extreme elegance and thin strokes
 *          reminiscent of high-fashion magazines and bridal editorials. Not used in any prior build.
 * Body: Mulish — a clean, warm geometric humanist sans with excellent legibility at small sizes.
 *       Not previously paired with Cormorant Garamond in this portfolio.
 *
 * ======== SECTION INDEX ========
 * 1. Custom Properties
 * 2. Reset & Base
 * 3. Typography
 * 4. Utilities
 * 5. Navbar
 * 6. Hero
 * 7. Features Strip
 * 8. Portfolio Grid
 * 9. Brand Teaser (50/50)
 * 10. Stats Row
 * 11. Testimonials
 * 12. Social CTA
 * 13. Social Feed
 * 14. Footer
 * 15. About Page
 * 16. Portfolio/Services Page
 * 17. Gallery Page
 * 18. Contact Page
 * 19. Animations & Fade-in
 * 20. Scroll-to-top
 * 21. Form Styles
 * 22. Responsive
 */

/* =================================================
   1. CUSTOM PROPERTIES
   ================================================= */
:root {
  --dark: #0A0A12;
  --accent: #B8967A;
  --highlight: #D4B896;
  --cream: #FAF8F5;
  --bg-alt: #13131E;
  --accent-dim: rgba(184, 150, 122, 0.12);
  --accent-mid: rgba(184, 150, 122, 0.30);
  --border: rgba(184, 150, 122, 0.20);
  --text-light: #EDE9E4;
  --text-muted: rgba(237, 233, 228, 0.55);
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Mulish', system-ui, -apple-system, sans-serif;

  --nav-h: 80px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.25);
}

/* =================================================
   2. RESET & BASE
   ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

/* =================================================
   3. TYPOGRAPHY
   ================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 500; }
p { line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.italic { font-style: italic; }

/* Section labels */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* =================================================
   4. UTILITIES
   ================================================= */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-highlight { color: var(--highlight); }
.text-muted { color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: var(--highlight); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(184,150,122,0.4); }
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-dark {
  background: var(--dark);
  color: var(--accent);
  border: 1px solid var(--border);
}
.btn-dark:hover { background: var(--accent); color: var(--dark); }

/* Section heading group */
.section-heading { margin-bottom: 3.5rem; }
.section-heading h2 { margin-bottom: 0.75rem; }
.section-heading p { color: var(--text-muted); max-width: 600px; }
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin-left: auto; margin-right: auto; }

/* Decorative line */
.accent-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 1.25rem 0;
}
.centered .accent-line { margin-left: auto; margin-right: auto; }

/* =================================================
   5. NAVBAR
   ================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,18,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar .logo { display: flex; align-items: center; gap: 0.85rem; }
.navbar .logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.navbar .logo-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; letter-spacing: 0.03em; line-height: 1.2; }
.navbar .logo-text span { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  border-radius: var(--radius);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-light); }
.nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text-light); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,10,18,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-light);
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: 1rem; }

/* =================================================
   6. HERO
   ================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  --page-hero-img: url('images/banner.jpg');
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-img);
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,18,0.55) 0%, rgba(10,10,18,0.25) 40%, rgba(10,10,18,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  background: rgba(10,10,18,0.4);
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-weight: 300;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--highlight);
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { height: 0; opacity: 0; }
  50% { height: 40px; opacity: 1; }
  100% { height: 40px; opacity: 0; transform: translateY(20px); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-img, url('images/banner.jpg'));
  background-size: cover;
  background-position: center 30%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,18,0.3) 0%, rgba(10,10,18,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; }
.page-hero-content .section-label { color: var(--accent); margin-bottom: 0.75rem; }

/* =================================================
   7. FEATURES STRIP
   ================================================= */
.features {
  background: var(--bg-alt);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: start;
}
.feature-item { text-align: center; }
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.feature-icon svg { width: 36px; height: 36px; }
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.feature-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* =================================================
   8. PORTFOLIO GRID
   ================================================= */
.work-grid-section { background: var(--dark); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.work-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,18,0.85) 0%, rgba(10,10,18,0) 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.work-item:hover img { transform: scale(1.06); }
.work-item:hover .work-overlay { opacity: 1; }
.work-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.work-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =================================================
   9. BRAND TEASER
   ================================================= */
.brand-teaser { background: var(--bg-alt); }
.brand-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.brand-teaser-image {
  position: relative;
  overflow: hidden;
}
.brand-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.brand-teaser-image:hover img { transform: scale(1.04); }
.brand-teaser-copy {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-teaser-copy h2 { margin-bottom: 1rem; }
.brand-teaser-copy p { color: var(--text-muted); margin-bottom: 1rem; }
.brand-teaser-copy .btn { margin-top: 0.5rem; align-self: flex-start; }

/* =================================================
   10. STATS ROW
   ================================================= */
.stats-row {
  background: var(--dark);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =================================================
   11. TESTIMONIALS
   ================================================= */
.testimonials { background: var(--bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars { display: flex; gap: 3px; color: var(--accent); }
.testimonial-stars svg { width: 14px; height: 14px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-info .name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--cream);
}
.testimonial-info .event {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

/* =================================================
   12. SOCIAL CTA
   ================================================= */
.social-cta {
  background: var(--dark);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.social-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,150,122,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.social-cta h2 { margin-bottom: 1rem; }
.social-cta p { color: var(--text-muted); max-width: 520px; margin: 0 auto 2.5rem; }
.social-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* =================================================
   13. SOCIAL FEED
   ================================================= */
.social-feed { background: var(--bg-alt); padding: 80px 0; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 2rem;
}
.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,18,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.feed-overlay svg { width: 24px; height: 24px; color: var(--cream); }
.feed-item:hover img { transform: scale(1.08); }
.feed-item:hover .feed-overlay { opacity: 1; }
.feed-cta { text-align: center; }
.feed-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.25s;
}
.feed-cta a:hover { color: var(--highlight); }
.feed-cta a svg { width: 18px; height: 18px; }

/* =================================================
   14. FOOTER
   ================================================= */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.footer-logo-text { font-family: var(--font-display); font-size: 1rem; font-weight: 500; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; margin-bottom: 1.5rem; max-width: 280px; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer-social-btn svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-contact ul { gap: 0.85rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-contact li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-contact li a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }
.footer-bottom a { color: var(--accent); }

/* =================================================
   15. ABOUT PAGE
   ================================================= */
.about-origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-origin-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-origin-img img { width: 100%; height: 100%; object-fit: cover; }
.about-origin-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.philosophy-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}
.philosophy-card:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-4px);
}
.philosophy-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 50%;
  color: var(--accent);
}
.philosophy-card .icon svg { width: 28px; height: 28px; }
.philosophy-card h4 { margin-bottom: 0.75rem; }
.philosophy-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.values-list { display: flex; flex-direction: column; gap: 0; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.value-item:last-child { border-bottom: none; }
.value-item:hover { padding-left: 0.5rem; }
.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  transition: color 0.3s;
}
.value-item:hover .value-num { color: var(--accent); }
.value-content h4 { margin-bottom: 0.5rem; }
.value-content p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.timeline { position: relative; padding: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 2.5rem;
  padding: 0 0 2.5rem 0;
  position: relative;
}
.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-dot svg { width: 16px; height: 16px; color: var(--accent); }
.timeline-content { padding-top: 0.5rem; }
.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.timeline-content h4 { margin-bottom: 0.35rem; }
.timeline-content p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}
.cta-split-image {
  position: relative;
  overflow: hidden;
}
.cta-split-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-split-content {
  background: var(--accent);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-split-content h2 { color: var(--dark); }
.cta-split-content p { color: rgba(10,10,18,0.75); margin-bottom: 1.5rem; }
.cta-split-content .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--dark);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  align-self: flex-start;
}
.cta-split-content .btn-cta:hover { background: var(--bg-alt); transform: translateX(4px); }

/* =================================================
   16. PORTFOLIO PAGE
   ================================================= */
.disclaimer-bar {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  text-align: center;
}
.disclaimer-bar p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
.disclaimer-bar strong { color: var(--accent); }

.category-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}
.category-tile {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.category-tile:hover {
  border-color: var(--accent);
  background: rgba(184,150,122,0.18);
  transform: translateY(-4px);
}
.category-tile .tile-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 50%;
  color: var(--accent);
}
.category-tile .tile-icon svg { width: 24px; height: 24px; }
.category-tile h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.category-tile p { font-size: 0.72rem; color: var(--text-muted); margin: 0; line-height: 1.4; }

.portfolio-section { margin-bottom: 5rem; }
.portfolio-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.portfolio-section-header .section-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.portfolio-section-header .section-icon svg { width: 22px; height: 22px; }
.portfolio-section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }

.service-list { display: flex; flex-direction: column; gap: 0; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.service-item:last-child { border-bottom: none; }
.service-item:hover { padding-left: 0.75rem; background: var(--accent-dim); padding-right: 1rem; border-radius: var(--radius); }
.service-item .service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.service-item .service-icon svg { width: 20px; height: 20px; }
.service-body { flex: 1; }
.service-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.service-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.service-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* =================================================
   17. GALLERY PAGE
   ================================================= */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.gallery-section { margin-bottom: 4rem; }
.gallery-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.masonry-grid {
  columns: 4;
  column-gap: 8px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,18,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.masonry-overlay svg { width: 32px; height: 32px; color: var(--cream); }
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,18,0.96);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(10,10,18,0.8);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(10,10,18,0.8);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* =================================================
   18. CONTACT PAGE
   ================================================= */
.contact-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.contact-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-block:hover { border-color: var(--accent); background: var(--accent-dim); }
.contact-block .cb-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-block .cb-icon svg { width: 22px; height: 22px; }
.contact-block h4 { font-size: 0.9rem; margin-bottom: 0.35rem; }
.contact-block p, .contact-block a {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  transition: color 0.25s;
}
.contact-block a:hover { color: var(--accent); }

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-intro h2 { margin-bottom: 1rem; }
.form-intro p { color: var(--text-muted); }

.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.45rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #e05151; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group option { background: var(--dark); }

#formSuccess {
  display: none;
  background: rgba(184,150,122,0.12);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
#formSuccess p { color: var(--accent); font-weight: 600; margin: 0; }

.map-placeholder {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}
.map-placeholder .map-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.map-placeholder .map-icon svg { width: 28px; height: 28px; }
.map-placeholder h3 { margin-bottom: 0.75rem; }
.map-placeholder p { color: var(--text-muted); font-size: 0.9rem; max-width: 500px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s;
}
.faq-question h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  transition: color 0.25s;
}
.faq-question:hover h4 { color: var(--accent); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 1.5rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* =================================================
   18b. ADDITIONAL PAGE COMPONENTS
   ================================================= */

/* --- Disclaimer bar (portfolio page) --- */
.disclaimer-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.disclaimer-bar .container svg { color: var(--accent); flex-shrink: 0; }

/* --- Category tiles (portfolio page) --- */
.category-tiles-section { padding: 80px 0 0; }
.category-tile-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.category-tile:hover .category-tile-img { transform: scale(1.04); }
.category-tile { overflow: hidden; }
.category-tile-body { padding: 1.5rem; }
.category-tile-body h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.category-tile-body p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* --- Portfolio category sections --- */
.portfolio-category-section { padding: 80px 0; }
.portfolio-category-header {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.portfolio-category-label {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
}
.portfolio-category-header h2 { margin-bottom: 0.75rem; }
.portfolio-category-header p { color: var(--text-muted); font-size: 0.9rem; margin: 0; max-width: 600px; }
.portfolio-featured-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.portfolio-featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
}
.portfolio-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-featured-img:hover img { transform: scale(1.04); }
.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}
.portfolio-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.portfolio-strip img:hover { transform: scale(1.04); }

/* service-item in new layout (no icon) */
.service-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.service-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 0.5rem; }

/* --- CTA section (shared) --- */
.cta-section { background: var(--bg-alt); }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 60px 2rem;
}
.cta-text .section-label { margin-bottom: 0.75rem; }
.cta-text h2 { margin-bottom: 1rem; }
.cta-text p { color: var(--text-muted); max-width: 520px; margin: 0; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

/* Btn variants */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--highlight); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(184,150,122,0.35); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.7rem; }
.btn-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
}

/* --- Gallery filter section --- */
.gallery-filter-section { padding: 60px 0; }

/* --- Page hero (all interior pages) --- */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,18,0.85) 0%, rgba(10,10,18,0.35) 60%, rgba(10,10,18,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-hero-content .eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.page-hero-content h1 {
  font-weight: 300;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.page-hero-content h1 em { font-style: italic; color: var(--highlight); }
.page-hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0;
}

/* --- Section title/intro (generic) --- */
.section-title { margin-bottom: 0.75rem; }
.section-intro { color: var(--text-muted); max-width: 600px; margin-bottom: 3rem; }

/* --- Section base --- */
.section { padding: 80px 0; }
.section.alt-bg { background: var(--bg-alt); }

/* --- Footer inner (new layout) --- */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand .footer-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.footer-brand .footer-logo span { font-family: var(--font-display); font-size: 1rem; font-weight: 500; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav ul li a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.25s; }
.footer-nav ul li a:hover { color: var(--cream); }
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-contact p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.footer-contact p a { transition: color 0.25s; }
.footer-contact p a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); margin: 0; text-align: center; }

/* Nav inner */
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.85rem; }
.nav-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.nav-logo span { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: var(--accent);
  color: var(--dark) !important;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--highlight) !important; }

/* --- Contact blocks (new layout) --- */
.contact-blocks-section { padding-bottom: 0; }
.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.contact-block-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.contact-block:hover .contact-block-icon { background: var(--accent); color: var(--dark); }
.contact-block h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.4rem; }
.contact-block p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.65; }
.contact-block-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.25s;
  word-break: break-all;
}
a.contact-block-link:hover { color: var(--highlight); }

/* --- Inquiry section --- */
.inquiry-section { padding: 80px 0; }
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.inquiry-intro h2 { margin-bottom: 1rem; }
.inquiry-intro p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.inquiry-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.inquiry-note svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.inquiry-form-wrap {}
.full-width { grid-column: 1 / -1; }
.form-group .req { color: var(--accent); }

/* form-success */
.form-success {
  text-align: center;
  padding: 3rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
}
.form-success svg { color: var(--accent); margin: 0 auto 1rem; }
.form-success h3 { margin-bottom: 0.75rem; }
.form-success p { color: var(--text-muted); margin: 0; }

/* --- Map section --- */
.map-section { padding: 0 0 80px; }
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-pin-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 1.5rem;
}
.map-placeholder h3 { margin-bottom: 0.5rem; }
.map-placeholder p { color: var(--text-muted); font-size: 0.9rem; max-width: 480px; margin: 0 auto; }
.map-note { margin-top: 1rem !important; font-size: 0.8rem !important; }

/* FAQ faq-question text (not wrapped in h4) */
.faq-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  transition: color 0.25s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* =================================================
   19. ANIMATIONS & FADE-IN
   ================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

/* =================================================
   20. SCROLL-TO-TOP
   ================================================= */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--highlight); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

/* =================================================
   22. RESPONSIVE
   ================================================= */

/* 1024px */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-inner { grid-template-columns: 1fr; }
  .brand-teaser-copy { padding: 3rem 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-origin { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .contact-blocks { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split-content { padding: 3rem 2rem; }
  .category-tiles { grid-template-columns: repeat(3, 1fr); }
  .feed-grid { grid-template-columns: repeat(4, 1fr); }
  .masonry-grid { columns: 3; }
  .portfolio-featured-row { grid-template-columns: repeat(2, 1fr); }
  .portfolio-strip { grid-template-columns: repeat(4, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; padding: 60px 2rem; }
  .cta-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .inquiry-layout { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-category-label { font-size: 3.5rem; }
}

/* 768px */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 1.25rem; }
  .section-pad { padding: 70px 0; }
  .section { padding: 60px 0; }

  .hero-actions { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { text-align: center; }
  .contact-blocks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { max-width: 100%; }
  .portfolio-featured-row { grid-template-columns: 1fr; }
  .portfolio-strip { grid-template-columns: repeat(3, 1fr); }
  .portfolio-category-header { flex-direction: column; gap: 1rem; }
  .portfolio-category-label { font-size: 2.5rem; }
  .page-hero { min-height: 45vh; padding-bottom: 60px; }
}

/* 480px */
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .category-tiles { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .social-buttons { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .portfolio-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; }
}
