@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Cormorant+SC:wght@300;400&family=Inter:wght@300;400&display=swap');

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

:root {
  --ink:       #0d0d0d;
  --fog:       #f5f3ef;
  --stone:     #8a8680;
  --rule:      #d4d0c9;
  --accent:    #c9b99a;
  --white:     #fdfcfa;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --serif-sc:  'Cormorant SC', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --max:       1200px;
  --gutter:    clamp(1.5rem, 5vw, 4rem);
  /* RGB accent — very subtle, used sparingly */
  --rgb-r:     #ff3b3b;
  --rgb-g:     #00ff99;
  --rgb-b:     #3b8fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── RGB glow utility (use sparingly) ─── */
@keyframes rgb-shift {
  0%   { text-shadow: -1px 0 1px rgba(255,59,59,0.25), 1px 0 1px rgba(59,143,255,0.25); }
  50%  { text-shadow: 1px 0 1px rgba(255,59,59,0.2), -1px 0 1px rgba(0,255,153,0.2); }
  100% { text-shadow: -1px 0 1px rgba(255,59,59,0.25), 1px 0 1px rgba(59,143,255,0.25); }
}

.rgb-glow {
  animation: rgb-shift 6s ease-in-out infinite;
}

/* Subtle RGB underline on hover for nav & links */
.rgb-line {
  position: relative;
}
.rgb-line::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rgb-r), var(--rgb-g), var(--rgb-b));
  opacity: 0;
  transition: opacity 0.3s;
}
.rgb-line:hover::after { opacity: 0.5; }

/* ─── Typography ─── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

h1, h2, h3 { font-weight: 300; line-height: 1.1; }

h1 { font-size: clamp(3rem, 8vw, 6.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.italic { font-style: italic; }

/* ─── Layout ─── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(4rem, 10vw, 8rem) 0; }

hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: var(--serif-sc);
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--stone);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--ink); }

/* RGB shimmer on nav hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rgb-r), var(--rgb-g), var(--rgb-b));
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-links a:hover::after { opacity: 0.45; }

/* ─── Hero ─── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(3rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1714 0%, #0d0d0d 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

/* Very faint RGB corner glow on hero */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 400px; height: 300px;
  background: radial-gradient(ellipse at bottom left,
    rgba(59,143,255,0.04) 0%,
    rgba(0,255,153,0.02) 40%,
    transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  color: var(--fog);
  max-width: 14ch;
  margin: 1rem 0 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-tagline {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.hero-scroll {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--stone);
}

/* ─── About strip ─── */
.about-strip {
  background: var(--fog);
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.about-label { padding-top: 0.5rem; }

.about-body p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.75;
  color: #2a2826;
  max-width: 60ch;
}

.about-body p + p { margin-top: 1.25em; }

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.service-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.service-item:hover { background: var(--fog); }

/* RGB top-edge on service card hover */
.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rgb-r), var(--rgb-g), var(--rgb-b));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-item:hover::before { opacity: 0.6; }

.service-num {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-item p {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

/* ─── Portfolio grid ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.portfolio-item:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.portfolio-item:nth-child(2) { grid-column: span 5; aspect-ratio: 4/5; }
.portfolio-item:nth-child(3) { grid-column: span 5; aspect-ratio: 4/5; }
.portfolio-item:nth-child(4) { grid-column: span 7; aspect-ratio: 16/10; }
.portfolio-item:nth-child(5) { grid-column: span 12; aspect-ratio: 21/9; }

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c1a18 0%, #2a2520 50%, #161412 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover .portfolio-placeholder { transform: scale(1.03); }

.portfolio-info { position: relative; z-index: 1; }
.portfolio-info .eyebrow { color: var(--accent); margin-bottom: 0.3rem; }
.portfolio-info h3 { color: var(--fog); font-size: 1.2rem; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}

/* ─── CTA banner ─── */
.cta-banner {
  background: var(--ink);
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  position: relative;
  overflow: hidden;
}

/* Faint RGB edge on CTA */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rgb-b), var(--rgb-g), var(--rgb-r), transparent);
  opacity: 0.3;
}

.cta-banner h2 { color: var(--fog); max-width: 18ch; margin: 1rem auto 2.5rem; }
.cta-banner h2 em { color: var(--accent); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 1rem 2.5rem;
  transition: background 0.2s, color 0.2s;
}

.btn:hover { background: var(--accent); color: var(--ink); }

.btn-light { border-color: var(--fog); color: var(--fog); }
.btn-light:hover { background: var(--fog); color: var(--ink); }

/* ─── Footer ─── */
footer {
  background: var(--fog);
  padding: 3rem var(--gutter);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rgb-r), var(--rgb-g), var(--rgb-b), transparent);
  opacity: 0.2;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--stone);
  letter-spacing: 0.08em;
}

.footer-links { display: flex; gap: 2rem; list-style: none; }

.footer-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ink); }

/* ─── About page ─── */
.about-page-hero {
  background: var(--ink);
  padding: clamp(8rem, 15vw, 12rem) var(--gutter) clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.about-page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: radial-gradient(ellipse at top right,
    rgba(255,59,59,0.04) 0%,
    rgba(59,143,255,0.03) 40%,
    transparent 70%);
  pointer-events: none;
}

.about-page-hero h1 { color: var(--fog); max-width: 14ch; margin: 1rem 0; }
.about-page-hero h1 em { color: var(--accent); font-style: italic; }

.about-page-hero p {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--stone);
  max-width: 44ch;
  line-height: 1.9;
  margin-top: 1.5rem;
}

.about-long {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-long-label { padding-top: 0.4rem; }

.about-long-body p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  color: #2a2826;
  max-width: 58ch;
}

.about-long-body p + p { margin-top: 1.3em; }

/* ─── Team section ─── */
.team-section {
  background: var(--fog);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.team-card {
  background: var(--fog);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.team-card:hover { background: var(--white); }

/* RGB top accent on team cards */
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rgb-b), var(--rgb-g));
  opacity: 0;
  transition: opacity 0.4s;
}

.team-card:hover::before { opacity: 0.5; }

.team-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rule);
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}

/* Placeholder initials circle */
.team-photo-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-sc);
  font-size: 1.1rem;
  color: var(--stone);
  background: var(--rule);
}

.team-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.25rem;
}

.team-bio {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
}

/* ─── Values strip ─── */
.values-strip {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.value-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.value-item p {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.8;
}

/* ─── Booking page ─── */
.booking-hero {
  background: var(--ink);
  padding: clamp(8rem, 15vw, 12rem) var(--gutter) clamp(4rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--rgb-b), var(--rgb-g), var(--rgb-r), transparent);
  opacity: 0.25;
}

.booking-hero h1 { color: var(--fog); font-size: clamp(2.5rem, 6vw, 5rem); margin: 1rem 0 1.5rem; }
.booking-hero p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--stone);
  letter-spacing: 0.06em;
  max-width: 40ch;
  margin: 0 auto;
  line-height: 1.8;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-bottom: 2rem;
}

.booking-info h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin: 1rem 0 1.5rem; }
.booking-info p { font-family: var(--sans); font-size: 0.82rem; color: var(--stone); line-height: 1.8; max-width: 38ch; }
.booking-info p + p { margin-top: 1rem; }

.process-list { list-style: none; margin-top: 2.5rem; }

.process-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.process-list li:first-child { border-top: 1px solid var(--rule); }

.process-step {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding-top: 0.35rem;
  min-width: 2rem;
}

.process-text strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.1rem; margin-bottom: 0.2rem; }
.process-text span { font-family: var(--sans); font-size: 0.75rem; color: var(--stone); }

/* ─── Form ─── */
.booking-form-wrap { background: var(--fog); padding: 2.5rem; }
.form-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-subtitle { font-family: var(--sans); font-size: 0.75rem; color: var(--stone); margin-bottom: 2rem; }

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

.form-field { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }

.form-field label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }

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

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8680' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.date-picker-wrap { position: relative; }

.date-grid {
  display: none;
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.date-grid.open { display: block; }

.date-grid-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }

.date-grid-header span { font-family: var(--serif-sc); font-size: 0.9rem; letter-spacing: 0.06em; }

.date-nav { background: none; border: none; cursor: pointer; color: var(--stone); font-size: 1.2rem; padding: 0.2rem 0.5rem; transition: color 0.2s; }
.date-nav:hover { color: var(--ink); }

.date-days-header { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 0.5rem; }

.date-days-header span { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--stone); text-transform: uppercase; }

.date-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }

.day-btn {
  aspect-ratio: 1;
  background: none;
  border: none;
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.day-btn:hover { background: var(--fog); }
.day-btn.selected { background: var(--ink); color: var(--fog); }
.day-btn.other-month { color: var(--rule); pointer-events: none; }
.day-btn.today { border-bottom: 2px solid var(--accent); }

.form-submit-wrap { margin-top: 1.5rem; }

.btn-submit {
  width: 100%;
  background: var(--ink);
  color: var(--fog);
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-submit:hover { background: transparent; color: var(--ink); }

.form-note { margin-top: 1rem; font-family: var(--sans); font-size: 0.68rem; color: var(--stone); text-align: center; line-height: 1.6; }

.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success h3 { font-size: 1.8rem; margin: 1rem 0 0.75rem; }
.form-success p { font-family: var(--sans); font-size: 0.8rem; color: var(--stone); }

/* ─── Portfolio page ─── */
.portfolio-hero {
  background: var(--fog);
  padding: clamp(8rem, 15vw, 12rem) var(--gutter) clamp(3rem, 6vw, 4rem);
}

.portfolio-hero h1 { max-width: 14ch; }

.filter-bar {
  display: flex;
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--ink); border-bottom-color: var(--ink); }

.full-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.work-card-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c1a18 0%, #2a2520 60%, #161412 100%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card:hover .work-card-bg { transform: scale(1.04); }

.work-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.work-card:hover .work-card-info { opacity: 1; transform: translateY(0); }
.work-card-info .eyebrow { color: var(--accent); margin-bottom: 0.3rem; }
.work-card-info h3 { color: var(--fog); font-size: 1.1rem; }

/* ─── Animations ─── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-inner, .about-long { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; }
  .portfolio-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }
  .booking-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:nth-child(n) { grid-column: span 1; }
  .full-portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
