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

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #1C1C2E;
  --gold:       #B8964E;
  --gold-light: #D4AF7A;
  --ivory:      #FAF8F5;
  --warm-light: #F2EDE6;
  --text:       #2D2D2D;
  --muted:      #7A7A7A;
  --white:      #FFFFFF;
  --border:     #E2D9CE;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Raleway', sans-serif;
  --transition: 0.35s ease;
  --shadow:     0 8px 40px rgba(28,28,46,0.10);
  --shadow-sm:  0 2px 12px rgba(28,28,46,0.07);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1.2rem; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.8;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav.scrolled .nav-logo { color: var(--navy); }

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

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--gold-light); }
.nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 26px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav-links .nav-cta {
  border-color: var(--navy);
  color: var(--navy);
}

.nav-links .nav-cta:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.nav.scrolled .nav-links .nav-cta:hover {
  background: var(--navy);
  color: var(--white);
}

.nav-links .nav-cta::after { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav-hamburger span { background: var(--navy); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(28,28,46,0.72) 0%, rgba(28,28,46,0.45) 50%, rgba(184,150,78,0.18) 100%),
    linear-gradient(to bottom right, #1C1C2E, #2e2245, #3a2e1e);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 900px 600px at 30% 40%, rgba(184,150,78,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 75% 70%, rgba(184,150,78,0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.hero h1 {
  color: var(--white);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.45s forwards;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.65s forwards;
}

.hero-divider span {
  width: 60px;
  height: 1px;
  background: rgba(184,150,78,0.6);
}

.hero-divider i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-light);
  transform: rotate(45deg);
  display: block;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.4s both;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(184,150,78,0.6));
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ─── Intro Strip ───────────────────────────────────────────── */
.intro-strip {
  background: var(--navy);
  padding: 70px 60px;
  display: flex;
  gap: 0;
}

.intro-strip-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
  position: relative;
}

.intro-strip-item + .intro-strip-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(184,150,78,0.3);
}

.intro-strip-item .number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.intro-strip-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ─── Sections ──────────────────────────────────────────────── */
section { padding: 120px 60px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 70px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ─── About Teaser ──────────────────────────────────────────── */
.about-teaser {
  background: var(--white);
}

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

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

.about-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1C1C2E 0%, #2e2245 40%, #3a2e1e 100%);
  position: relative;
  overflow: hidden;
}

.about-image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 40% 40%, rgba(184,150,78,0.15) 0%, transparent 70%);
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0.12;
  z-index: -1;
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: var(--white);
  padding: 22px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 2;
}

.about-image-badge .badge-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.about-text-block { }

.about-text-block .section-subtitle {
  max-width: 100%;
  margin-bottom: 2rem;
}

.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.6;
}

/* ─── Services ──────────────────────────────────────────────── */
.services { background: var(--ivory); }

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

.service-card {
  background: var(--white);
  padding: 50px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  position: relative;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0.15;
  transition: opacity var(--transition);
}

.service-card:hover .service-icon::before { opacity: 0.25; }

.service-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: color var(--transition);
}

.service-card:hover h3 { color: var(--white); }

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  transition: color var(--transition);
}

.service-card:hover p { color: rgba(255,255,255,0.6); }

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.04;
  line-height: 1;
  transition: opacity var(--transition), color var(--transition);
}

.service-card:hover .service-number {
  color: var(--white);
  opacity: 0.06;
}

/* ─── Process ───────────────────────────────────────────────── */
.process { background: var(--navy); }

.process .section-label { color: var(--gold-light); }
.process .section-title { color: var(--white); }
.process .section-subtitle { color: rgba(255,255,255,0.5); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-top: 70px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,78,0.3) 20%, rgba(184,150,78,0.3) 80%, transparent);
  z-index: 0;
}

.process-step { position: relative; z-index: 1; }

.process-step-num {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(184,150,78,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 28px;
  background: var(--navy);
}

.process-step h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials { background: var(--warm-light); }

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

.testimonial-card {
  background: var(--white);
  padding: 50px 40px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 28px;
  left: 36px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars span {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 28px;
  quotes: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #2e2245);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
}

.testimonial-author-info strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ─── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(130deg, #1C1C2E 0%, #2a1e3e 50%, #2e1e10 100%);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 1000px 600px at 50% 50%, rgba(184,150,78,0.1) 0%, transparent 70%);
}

.cta-banner h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
}

.footer-main {
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .nav-logo {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
  color: rgba(255,255,255,0.45);
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

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

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--gold-light); }

.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 2;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 26px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Services Page ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(130deg, #1C1C2E 0%, #2a1e3e 50%, #2e1e10 100%);
  padding: 180px 60px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(184,150,78,0.1) 0%, transparent 70%);
}

.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); font-style: italic; position: relative; }
.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 1.2rem auto 0;
  font-size: 1.05rem;
  position: relative;
}

.services-full { background: var(--ivory); }

.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-full-card {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  gap: 60px;
  align-items: center;
  background: var(--white);
  padding: 60px;
  transition: var(--transition);
}

.service-full-card:hover { background: var(--warm-light); }

.service-full-card .service-title-block { }

.service-full-card .service-number-large {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.service-full-card h3 { font-size: 1.7rem; }

.service-full-card .service-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.9;
}

.service-full-card .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.service-full-card .service-cta {
  flex-shrink: 0;
}

/* ─── About Page ────────────────────────────────────────────── */
.about-full { background: var(--white); }

.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-full-text h2 { margin-bottom: 1.5rem; }

.about-full-text p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.values-section { background: var(--ivory); }

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

.value-item {
  padding: 40px;
  background: var(--white);
  border-top: 2px solid var(--border);
  transition: border-color var(--transition);
}

.value-item:hover { border-color: var(--gold); }

.value-item h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── Gallery Page ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--navy);
}

.gallery-item.tall { aspect-ratio: 4/5; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/7; }

.gallery-item-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-item-bg { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,46,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}

/* Gallery item gradient backgrounds (placeholder) */
.gi-1 .gallery-item-bg { background: linear-gradient(135deg, #2c1810, #4a2c1a, #1C1C2E); }
.gi-2 .gallery-item-bg { background: linear-gradient(135deg, #1C1C2E, #2e2245, #1a1040); }
.gi-3 .gallery-item-bg { background: linear-gradient(135deg, #1a2010, #2a3a1a, #1C1C2E); }
.gi-4 .gallery-item-bg { background: linear-gradient(135deg, #3a1a1a, #2e1e3e, #1C1C2E); }
.gi-5 .gallery-item-bg { background: linear-gradient(135deg, #1C1C2E, #1a2e2e, #102020); }
.gi-6 .gallery-item-bg { background: linear-gradient(135deg, #2a2010, #3a2a1a, #1C1C2E); }
.gi-7 .gallery-item-bg { background: linear-gradient(135deg, #1a1a2e, #2e1a1a, #2e2e10); }
.gi-8 .gallery-item-bg { background: linear-gradient(135deg, #102810, #2a4020, #1C1C2E); }

.gallery-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.gallery-item-icon svg {
  width: 60px;
  height: 60px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 0.8;
}

/* ─── Contact Page ──────────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.2rem; }

.contact-info p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; }

.contact-detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ─── Contact Form ──────────────────────────────────────────── */
.contact-form-wrapper {
  background: var(--ivory);
  padding: 60px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group label .required { color: var(--gold); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}

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

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

.form-group 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='%237A7A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

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

.form-submit { margin-top: 10px; }

.form-submit .btn { width: 100%; text-align: center; }

.form-message {
  margin-top: 16px;
  padding: 16px 20px;
  font-size: 0.88rem;
  display: none;
}

.form-message.success {
  background: #f0f7f0;
  border-left: 3px solid #5a9e5a;
  color: #2d5a2d;
  display: block;
}

.form-message.error {
  background: #fdf0f0;
  border-left: 3px solid #c05a5a;
  color: #5a1a1a;
  display: block;
}

/* ─── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  section { padding: 80px 40px; }
  .nav { padding: 0 30px; }
  .about-teaser-grid,
  .about-full-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .intro-strip { flex-direction: column; padding: 50px 30px; gap: 30px; }
  .intro-strip-item + .intro-strip-item::before { display: none; }
  .service-full-card { grid-template-columns: 1fr; gap: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .footer-main { padding: 60px 30px 40px; grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 20px 30px; flex-direction: column; gap: 10px; text-align: center; }
  .contact-form-wrapper { padding: 40px 30px; }
  .page-hero { padding: 140px 30px 80px; }
  .cta-banner { padding: 80px 30px; }
}

@media (max-width: 700px) {
  .nav-links { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 30px; gap: 24px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--navy); }
  .nav-links .nav-cta { border-color: var(--navy); color: var(--navy); }
  .nav-hamburger { display: flex; }
  h1 { font-size: 2.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
}
