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

:root {
  --red:        #B22222;
  --red-hover:  #8B1A1A;
  --red-soft:   rgba(178,34,34,0.08);
  --gold:       #B8860B;
  --gold-light: #D4A017;
  --gold-pale:  #FEF9EE;
  --dark:       #1a1a1a;
  --dark-2:     #2a2a2a;
  --gray:       #6b7280;
  --gray-light: #f0efed;
  --white:      #ffffff;
  --off-white:  #fafaf8;
  --shadow:     0 4px 32px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  background: var(--white);
  color: var(--dark);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

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

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold-light); }

/* ========================
   TYPOGRAPHY
======================== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem);  font-weight: 600; }
h2 { font-size: clamp(2rem,   4vw,   3.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw,   1.6rem); font-weight: 500; }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}


/* ========================
   LAYOUT
======================== */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad    { padding: 7rem 0; }
.section-pad-sm { padding: 5rem 0; }

/* ========================
   NAV
======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.98);
  padding: 0.9rem 2.5rem;
  box-shadow: 0 1px 28px rgba(0,0,0,0.07);
}

/* Transparent nav: white links (over dark hero) */
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}

.nav.scrolled .nav-link { color: var(--gray); }
.nav-link:hover,
.nav.scrolled .nav-link:hover { color: var(--red); }

.nav-cta {
  background: var(--gold-light);
  color: var(--white) !important;
  padding: 0.55rem 1.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--transition), transform 0.2s;
}

.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav.scrolled .nav-toggle span { background: var(--dark); }

/* ========================
   NAV BACKDROP (mobile)
======================== */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1001;
  backdrop-filter: blur(2px);
}
.nav-backdrop.open { display: block; }

/* Close button inside slide panel */
.nav-panel-close {
  display: none;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--dark);
  opacity: 0.5;
  padding: 0.25rem 0.5rem;
  transition: opacity 0.2s;
}
.nav-panel-close:hover { opacity: 1; }

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/connecticut.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(178,34,34,0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 0 2rem;
  margin-left: 7vw;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}


.hero-tag span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

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

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ========================
   BUTTONS
======================== */
.btn-primary {
  display: inline-block;
  background: var(--gold-light);
  color: var(--white);
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--gold-light);
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.45);
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--dark);
  transition: all var(--transition);
}

.btn-dark:hover {
  background: transparent;
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-red-outline {
  display: inline-block;
  background: transparent;
  color: var(--red);
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  transition: all var(--transition);
}

.btn-red-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========================
   ABOUT
======================== */
.about { background: var(--white); }

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

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  border: 2px solid var(--gold-light);
  opacity: 0.4;
  z-index: 0;
}

.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.about-img-secondary {
  position: absolute;
  bottom: 2.5rem;
  right: -2.5rem;
  z-index: 3;
  width: 160px;
  height: 160px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  background: var(--gold-light);
  color: var(--white);
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(212,160,23,0.45);
}

.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .lbl {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 0.2rem;
  opacity: 0.9;
}

.about-text h2 { color: var(--dark); margin-bottom: 1.25rem; }

.about-text p {
  color: var(--gray);
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}

.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat .lbl {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

/* ========================
   SERVICES
======================== */
.services { background: var(--off-white); }

.services .section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services .section-intro p {
  color: var(--gray);
  font-size: 1rem;
  padding-top: 1rem;
}

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

.service-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  border-color: rgba(178,34,34,0.12);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  color: var(--dark);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ========================
   PROJECTS PREVIEW
======================== */
.projects-preview { background: var(--white); }

.projects-preview .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.75rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s;
}

.link-arrow:hover { gap: 0.85rem; }
.link-arrow::after { content: '→'; }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.proj-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.proj-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.65s var(--transition);
  display: block;
}

.proj-card:hover img { transform: scale(1.06); }

.proj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.4rem;
}

.proj-card:hover .proj-card-overlay { opacity: 1; }

.proj-card-title {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.proj-card-type {
  color: rgba(255,255,255,0.72);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.proj-card.featured { grid-column: span 2; }
.proj-card.featured img { height: 460px; }

/* ========================
   PROCESS
======================== */
.process { background: var(--gold-pale); }

.process .section-intro-center {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.process .section-intro-center p {
  color: var(--gray);
  margin-top: 1rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  counter-reset: step;
}

.process-step {
  counter-increment: step;
  position: relative;
  padding-top: 0.5rem;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.process-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.65rem;
  letter-spacing: 0;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ========================
   CTA BANNER
======================== */
.cta-banner {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 5.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(212,160,23,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 90% 50%, rgba(178,34,34,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* ========================
   FOOTER
======================== */
footer {
  background: #1B1910;
  padding: 5rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col li { margin-bottom: 0.55rem; }

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

.footer-col a:hover { color: var(--white); }

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

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

.footer-credit {
  color: rgba(255,255,255,0.2);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.footer-credit a {
  color: rgba(212,160,23,0.45);
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: rgba(212,160,23,0.8);
}

/* ========================
   FOOTER EMBLEM
======================== */
.footer-emblem {
  display: none; /* removed floating approach */
}

.footer-logo-img {
  width: 100px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.85;
}

footer .container { position: relative; z-index: 1; }

/* ========================
   PAGE HERO (subpages)
======================== */
.page-hero {
  background: var(--off-white);
  padding: 9rem 2rem 4.5rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { color: var(--dark); margin-bottom: 0.75rem; }
.page-hero p { color: var(--gray); font-size: 1.05rem; }

/* ========================
   PROJECTS GALLERY PAGE
======================== */
.gallery-section { background: var(--white); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
}

.project-figure {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.project-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f5f3ef;
}

.project-figure figcaption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  padding: 0.85rem 0.5rem 0.25rem;
  letter-spacing: 0.03em;
  border-top: 1px solid #ddd8d0;
  margin-top: 0.5rem;
}

.project-figure {
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.project-figure:hover img { opacity: 0.88; }

/* ========================
   LIGHTBOX
======================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.96);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90vw;
  max-height: 92vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  user-select: none;
  border: 1px solid rgba(255,255,255,0.06);
}

.lightbox-caption {
  color: rgba(255,255,255,0.78);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 1rem;
  padding: 0 1rem;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 1.5rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 3001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 1.4rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 3001;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(212,160,23,0.25);
  border-color: rgba(212,160,23,0.5);
  color: var(--white);
}

@media (max-width: 768px) {
  .lightbox-prev { left: 0.35rem; }
  .lightbox-next { right: 0.35rem; }
  .lightbox-prev, .lightbox-next { width: 2.4rem; height: 2.4rem; font-size: 1.1rem; }
  .lightbox-img { max-height: 75vh; }
}

/* ========================
   CONTACT PAGE
======================== */
.contact-section { background: var(--white); }

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

.contact-designer-photo {
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
}

.contact-designer-photo img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: inset(0 0 30% 0);
  margin-bottom: -30%;
}

.contact-info h2 { color: var(--dark); margin-bottom: 1rem; }

.contact-info > p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--red-soft);
  border: 1px solid rgba(178,34,34,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.contact-val {
  color: var(--dark);
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: var(--off-white);
  padding: 3rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.85rem 1rem;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.2s;
  width: 100%;
  outline: none;
  appearance: none;
}

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

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

/* ========================
   SCROLL REVEAL
======================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal-scale.in { opacity: 1; transform: scale(1); }

[data-d="1"] { transition-delay: 0.1s; }
[data-d="2"] { transition-delay: 0.2s; }
[data-d="3"] { transition-delay: 0.3s; }
[data-d="4"] { transition-delay: 0.4s; }
[data-d="5"] { transition-delay: 0.5s; }

/* ========================
   KEYFRAMES
======================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-steps   { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section-pad    { padding: 4rem 0; }
  .section-pad-sm { padding: 3rem 0; }

  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  /* Dropdown from top */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.97);
    gap: 0;
    z-index: 1002;
    animation: dropDown 0.28s ease;
  }

  .nav-links.open .nav-link {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.18em;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 200px;
    text-align: center;
    display: block;
    transition: color 0.2s;
  }

  .nav-links.open .nav-link:hover { color: var(--gold-light); }

  .nav-links.open .nav-cta {
    background: var(--gold-light);
    color: var(--white) !important;
    padding: 0.75rem 1.6rem;
    margin-top: 1.25rem;
    border-bottom: none;
    width: 200px;
    text-align: center;
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-img-wrap { padding-bottom: 2.5rem; }
  .about-img-wrap img { height: 380px; }
  .about-img-wrap::before { display: none; }
  .about-badge { width: 96px; height: 96px; right: 0.75rem; bottom: 0; }
  .about-badge .num { font-size: 1.6rem; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }

  /* Services */
  .services .section-intro { grid-template-columns: 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Projects preview */
  .proj-grid { grid-template-columns: 1fr; }
  .proj-card.featured { grid-column: span 1; }
  .proj-card.featured img,
  .proj-card img { height: 260px; }
  .projects-preview .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Process */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* CTA */
  .cta-banner { padding: 4rem 1.5rem; }

  /* Gallery (projects page) */
  .project-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }

  /* Page hero subpages */
  .page-hero { padding: 7rem 1.5rem 3rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-wrap { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .contact-designer-photo img { max-height: 300px; object-fit: contain; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-logo-img { width: 80px; }

  /* Hero */
  .hero-content { margin-left: 0; padding: 0 1.5rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .btn-primary, .btn-outline, .btn-dark, .btn-red-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .project-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: 0.75rem 1.25rem; }
}

@keyframes dropDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
