/* ============================================================
   INFINITY POOLS — DESIGN SYSTEM
   Luxury · Minimal · Architectural
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --off-white:    #F5F3F0;
  --black:        #0A0A0A;
  --dark:         #1C1C1C;
  --gray:         #6A6A6A;
  --gray-light:   #C0BCB6;
  --stone:        #958E7D;
  --stone-light:  #E2DDD6;
  --deep-blue:    #0D2A3A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans:        0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }


/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 34px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--trans), background var(--trans), border-color var(--trans);
  border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
  padding: 20px 68px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(0, 0, 0, 0.07);
}

.site-nav.light-start {
  padding: 22px 68px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(0, 0, 0, 0.07);
}

.nav-logo {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--trans);
}
.site-nav.is-scrolled .nav-logo,
.site-nav.light-start .nav-logo { color: var(--black); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 52px;
  align-items: center;
}
.nav-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--trans);
}
.site-nav.is-scrolled .nav-links a,
.site-nav.light-start .nav-links a { color: var(--gray); }

.nav-links a:hover { color: rgba(255,255,255,0.95); }
.site-nav.is-scrolled .nav-links a:hover,
.site-nav.light-start .nav-links a:hover { color: var(--black); }

.nav-links a.active { color: var(--white); font-weight: 500; }
.site-nav.is-scrolled .nav-links a.active,
.site-nav.light-start .nav-links a.active { color: var(--black); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--white);
  transition: background var(--trans);
}
.site-nav.is-scrolled .nav-toggle span,
.site-nav.light-start .nav-toggle span { background: var(--black); }

/* Mobile Menu Overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 44px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--white); }
.nav-close {
  position: absolute;
  top: 32px; right: 40px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
}
.nav-close:hover { color: var(--white); }


/* ============================================================
   HERO — full-screen video
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(6, 18, 26, 0.82) 0%,
    rgba(6, 18, 26, 0.30) 40%,
    rgba(6, 18, 26, 0.05) 72%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 68px 108px;
  max-width: 680px;
}

.hero-tag {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 22px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 90px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 2.1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 16px 38px;
  transition: border-color var(--trans), background var(--trans);
}
.hero-cta:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.07);
}

.scroll-cue {
  position: absolute;
  bottom: 44px; right: 68px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.scroll-cue-text {
  font-size: 8px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}
.scroll-cue-line {
  width: 1px;
  height: 58px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.30));
}


/* ============================================================
   SHARED SECTION ELEMENTS
   ============================================================ */

.section-tag {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.06;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 3px;
  transition: color var(--trans), border-color var(--trans);
}
.link-arrow:hover { color: var(--black); border-color: var(--black); }

.btn-dark {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 18px 52px;
  border: 1px solid var(--black);
  transition: background var(--trans);
}
.btn-dark:hover { background: #2c2c2c; border-color: #2c2c2c; }

.btn-outline {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  padding: 18px 52px;
  border: 1px solid var(--black);
  transition: background var(--trans), color var(--trans);
}
.btn-outline:hover { background: var(--black); color: var(--white); }


/* ============================================================
   HOMEPAGE — PORTFOLIO PREVIEW
   ============================================================ */

.portfolio-preview { padding: 148px 0 0; }

.preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 68px 72px;
}
.preview-header .section-tag { margin-bottom: 18px; }

/* 12-column grid */
.home-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.hg-item {
  overflow: hidden;
  background: var(--stone-light);
}
.hg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}
.hg-item:hover img { transform: scale(1.04); }

.hg-1 { grid-column: 1 / 8;  aspect-ratio: 3 / 2; }
.hg-2 { grid-column: 8 / 13; min-height: 400px; }
.hg-3 { grid-column: 1 / 5;  aspect-ratio: 4 / 5; }
.hg-4 { grid-column: 5 / 9;  aspect-ratio: 4 / 5; }
.hg-5 { grid-column: 9 / 13; aspect-ratio: 4 / 5; }
.hg-6 { grid-column: 1 / 13; aspect-ratio: 16 / 5; }


/* ============================================================
   HOMEPAGE — ABOUT TEASER
   ============================================================ */

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  padding: 148px 68px;
}
.about-teaser__text .section-tag { margin-bottom: 26px; }
.about-teaser__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.about-teaser__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 44px;
}
.about-teaser__image {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.about-teaser__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}
.about-teaser__image:hover img { transform: scale(1.03); }


/* ============================================================
   HOMEPAGE — SERVICES TEASER
   ============================================================ */

.services-teaser {
  background: var(--off-white);
  padding: 120px 68px;
}
.services-teaser__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 68px;
}
.services-teaser__header .section-tag { margin-bottom: 18px; }
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.svc-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.svc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
  filter: brightness(0.68);
}
.svc-card:hover img { transform: scale(1.05); filter: brightness(0.58); }
.svc-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 30px 32px;
  background: linear-gradient(to top, rgba(6, 18, 26, 0.65), transparent);
}
.svc-card__name {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 300;
  color: var(--white);
}


/* ============================================================
   HOMEPAGE — CTA BAND
   ============================================================ */

.cta-band {
  padding: 180px 68px;
  text-align: center;
}
.cta-band .section-tag { margin-bottom: 22px; }
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.cta-band__sub {
  font-size: 12.5px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 56px;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--black);
  padding: 72px 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer-logo {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.footer-nav {
  display: flex;
  gap: 40px;
  list-style: none;
  justify-content: center;
}
.footer-nav a {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.3s;
}
.footer-nav a:hover { color: rgba(255, 255, 255, 0.72); }
.footer-right { text-align: right; }
.footer-email {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.3s;
  margin-bottom: 6px;
}
.footer-email:hover { color: rgba(255, 255, 255, 0.72); }
.footer-copy {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.16);
}


/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */

.page-header {
  position: relative;
  height: 62vh;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-header img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-header__overlay {
  position: absolute;
  inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(6, 18, 26, 0.76) 0%,
    rgba(6, 18, 26, 0.20) 52%,
    rgba(6, 18, 26, 0.03) 100%
  );
}
.page-header__content {
  position: relative;
  z-index: 2;
  padding: 0 68px 80px;
}
.page-header__tag {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 14px;
}
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 82px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.02;
}


/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

.portfolio-intro {
  padding: 88px 68px 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--stone-light);
}
.portfolio-intro__left .section-tag { margin-bottom: 14px; }
.portfolio-intro__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
}
.portfolio-intro__note {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  max-width: 280px;
  text-align: right;
}

/* Portfolio masonry grid */
.portfolio-grid {
  padding: 3px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.pg-item {
  overflow: hidden;
  background: var(--stone-light);
}
.pg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}
.pg-item:hover img { transform: scale(1.04); }

.pg-sq   { aspect-ratio: 1 / 1; }
.pg-tall { aspect-ratio: 3 / 4; }
.pg-land { aspect-ratio: 4 / 3; }
.pg-wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.pg-full { grid-column: span 3; aspect-ratio: 16 / 7; }


/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-intro {
  padding: 88px 68px 80px;
  max-width: 680px;
}
.services-intro .section-tag { margin-bottom: 26px; }
.services-intro__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 22px;
}
.services-intro__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray);
  font-weight: 300;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

.service-block__img {
  overflow: hidden;
  position: relative;
}
.service-block__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}
.service-block:hover .service-block__img img { transform: scale(1.04); }

.service-block__copy {
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.service-block:nth-child(even) .service-block__copy { background: var(--off-white); }

.service-block__num {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 28px;
}
.service-block__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.service-block__desc {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--gray);
  font-weight: 300;
  max-width: 360px;
}

.services-cta {
  padding: 140px 68px;
  text-align: center;
  background: var(--off-white);
}
.services-cta .section-tag { margin-bottom: 20px; }
.services-cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 44px;
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 100px 68px 80px;
}
.about-lead__text .section-tag { margin-bottom: 26px; }
.about-lead__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin-bottom: 30px;
}
.about-lead__body {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 18px;
}
.about-lead__image {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.about-lead__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}
.about-lead__image:hover img { transform: scale(1.03); }

/* Values strip */
.about-values {
  background: var(--off-white);
  padding: 108px 68px;
}
.about-values .section-tag { margin-bottom: 60px; }
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
}
.value__num {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}
.value__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 14px;
}
.value__body {
  font-size: 13px;
  line-height: 1.85;
  color: var(--gray);
  font-weight: 300;
}

/* Statement */
.about-statement {
  padding: 120px 68px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.about-statement__quote {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.about-statement__aside {
  flex: 0 0 320px;
  padding-top: 8px;
}
.about-statement__aside p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 16px;
}

/* About gallery */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 3px;
}
.ag-item {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.ag-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}
.ag-item:hover img { transform: scale(1.04); }


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 65px);
}

.contact-panel-left {
  padding: 120px 72px 100px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-panel-left .section-tag { margin-bottom: 26px; }
.contact-panel-left__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin-bottom: 26px;
}
.contact-panel-left__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray);
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 56px;
}
.contact-details { border-top: 1px solid var(--stone-light); padding-top: 44px; }
.contact-detail { margin-bottom: 32px; }
.contact-detail__label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.contact-detail__value {
  font-size: 15px;
  color: var(--dark);
  font-weight: 300;
}
.contact-detail__value a { transition: color 0.3s; }
.contact-detail__value a:hover { color: var(--black); }

.contact-panel-right {
  background: var(--off-white);
  padding: 120px 68px 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}
.form-group { margin-bottom: 32px; }
.form-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--stone-light);
  padding: 12px 0;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--black); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-light); font-weight: 300; }
.form-textarea { resize: none; height: 110px; line-height: 1.7; }
.form-select { cursor: pointer; }
.form-submit {
  width: 100%;
  margin-top: 12px;
  padding: 18px 24px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--trans);
}
.form-submit:hover { background: #2a2a2a; }


/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.17s; }
.d3 { transition-delay: 0.26s; }
.d4 { transition-delay: 0.35s; }
.d5 { transition-delay: 0.44s; }
.d6 { transition-delay: 0.53s; }


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .site-nav,
  .site-nav.is-scrolled,
  .site-nav.light-start { padding-left: 44px; padding-right: 44px; }
  .hero-content { padding: 0 44px 88px; }
  .scroll-cue { right: 44px; }
  .about-teaser, .about-lead { gap: 60px; }
  .service-block__copy { padding: 60px 56px; }
}

@media (max-width: 900px) {
  .about-teaser,
  .about-lead { grid-template-columns: 1fr; gap: 48px; padding: 80px 44px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-panel-left,
  .contact-panel-right { padding: 72px 44px; justify-content: flex-start; }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
  .about-statement { flex-direction: column; gap: 40px; }
  .about-statement__aside { flex: none; width: 100%; }
  .service-block { grid-template-columns: 1fr; min-height: auto; }
  .service-block:nth-child(even) { direction: ltr; }
  .service-block__img { aspect-ratio: 16 / 9; }
  .service-block__copy { padding: 60px 44px; }
  .services-cards { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; gap: 28px; padding: 60px 44px; }
  .footer-right { text-align: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
  .hg-1 { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .hg-2 { grid-column: 1 / -1; min-height: 320px; aspect-ratio: 16 / 9; }
  .hg-3, .hg-4, .hg-5 { grid-column: span 6; }
  .hg-6 { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .site-nav,
  .site-nav.is-scrolled,
  .site-nav.light-start { padding-left: 28px; padding-right: 28px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 28px 72px; }
  .scroll-cue { display: none; }
  .preview-header, .portfolio-intro {
    padding-left: 28px; padding-right: 28px;
    flex-direction: column; gap: 20px; align-items: flex-start;
  }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .pg-wide { grid-column: span 2; }
  .pg-full { grid-column: span 2; aspect-ratio: 4 / 3; }
  .services-intro, .services-cta,
  .about-values, .about-statement,
  .services-teaser, .cta-band,
  .page-header__content { padding-left: 28px; padding-right: 28px; }
  .about-values__grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .portfolio-intro__note { display: none; }
  .page-header__content { padding-bottom: 56px; }
  .about-gallery { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   NAV CTA LINK
   ============================================================ */

.nav-cta-link {
  border: 1px solid rgba(255,255,255,0.30) !important;
  padding: 9px 22px !important;
  transition: border-color var(--trans), background var(--trans), color var(--trans) !important;
}
.nav-cta-link:hover {
  border-color: rgba(255,255,255,0.65) !important;
  background: rgba(255,255,255,0.07) !important;
}
.site-nav.is-scrolled .nav-cta-link,
.site-nav.light-start .nav-cta-link {
  border-color: rgba(0,0,0,0.22) !important;
}
.site-nav.is-scrolled .nav-cta-link:hover,
.site-nav.light-start .nav-cta-link:hover {
  border-color: var(--black) !important;
  background: var(--black) !important;
  color: var(--white) !important;
}


/* ============================================================
   HOME GRID RESPONSIVE ADDITIONS
   ============================================================ */

@media (max-width: 680px) {
  .home-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .hg-1 { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .hg-2 { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .hg-3, .hg-4, .hg-5 { grid-column: span 1; aspect-ratio: 1 / 1; }
  .hg-6 { grid-column: 1 / -1; aspect-ratio: 16 / 6; }
}


/* ============================================================
   FOOTER RESPONSIVE ADDITIONS
   ============================================================ */

@media (max-width: 680px) {
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding: 60px 28px;
  }
  .footer-right { text-align: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
}
