/* ============================================
   HIGH HOLLY — AKQA-Inspired Editorial Design
   ============================================
   Palette: White (#FFFFFF), Near-black (#1A1A1A), 
   Medium gray (#5A5A5A), Light gray (#F5F5F5),
   Warm cream (#F5F0E8)
   Typography: Cormorant Garamond (display serif) + 
   Inter (grotesque sans)
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --cream: #F5F0E8;
  --near-black: #1A1A1A;
  --dark: #202020;
  --text-primary: #121212;
  --text-secondary: #5A5A5A;
  --text-light: #999999;
  --text-on-dark: #F5F5F5;
  --text-on-dark-secondary: #BFBFBF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', Helvetica, Arial, sans-serif;

  --content-max: 1320px;
  --side-pad: 48px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-serif);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-pad);
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--dark {
  background: rgba(26, 26, 26, 0.95);
}

.nav--dark .nav__logo,
.nav--dark .nav__link {
  color: var(--text-on-dark);
}

.nav--dark .nav__link--active {
  color: var(--text-on-dark);
}

.nav__logo {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-primary);
  text-decoration: none;
}

.nav__logo:hover {
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.nav__link--active {
  color: var(--text-primary);
}

.nav--dark .nav__link:hover {
  color: var(--white);
}

/* ─── HERO SLIDESHOW ─── */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  margin-top: 72px;
}

.hero__slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

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

.hero__indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}

.hero__dot--active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.25);
}

/* ─── STATEMENT ─── */
.statement {
  padding: 120px var(--side-pad);
  background: var(--white);
}

.statement__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.statement__heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -1.4px;
  color: var(--text-primary);
  max-width: 900px;
}

.statement__heading em {
  font-style: italic;
  font-weight: 300;
}

/* ─── EXPERTISE ─── */
.expertise {
  padding: 80px var(--side-pad) 120px;
  background: var(--white);
}

.expertise__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

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

.expertise__card {
  display: flex;
  flex-direction: column;
}

.expertise__card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 24px;
}

.expertise__card-image img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expertise__card:hover .expertise__card-image img {
  transform: scale(1.04);
}

.expertise__card-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.expertise__card-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.expertise__card-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.expertise__card-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}

.expertise__card-link:hover {
  opacity: 0.6;
}

/* ─── ABOUT (Cream background, editorial split) ─── */
.about {
  padding: 120px var(--side-pad);
  background: var(--cream);
}

.about__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}

.about__heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.about__body {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.about__image img {
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about:hover .about__image img {
  transform: scale(1.03);
}

/* ─── CONTACT (Dark theme) ─── */
.contact {
  padding: 120px var(--side-pad);
  background: var(--dark);
  color: var(--text-on-dark);
}

.contact__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -1.4px;
  color: var(--text-on-dark);
}

.contact__right {
  padding-top: 16px;
}

.contact__item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__item:first-child {
  padding-top: 0;
}

.contact__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-dark-secondary);
  margin-bottom: 8px;
}

.contact__value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-on-dark);
}

.contact__value:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ─── FOOTER ─── */
.footer {
  padding: 24px var(--side-pad);
  background: var(--near-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-on-dark-secondary);
}

.footer__copy {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-on-dark-secondary);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root {
    --side-pad: 32px;
  }

  .expertise__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --side-pad: 24px;
  }

  .nav__links {
    gap: 24px;
  }

  .nav__link {
    font-size: 12px;
  }

  .hero {
    height: 60vh;
  }

  .statement {
    padding: 80px var(--side-pad);
  }

  .expertise__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image {
    aspect-ratio: 16 / 9;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .statement__heading {
    letter-spacing: -0.5px;
  }
}

@media (max-width: 480px) {
  :root {
    --side-pad: 20px;
  }

  .nav {
    height: 60px;
  }

  .hero {
    margin-top: 60px;
    height: 50vh;
  }

  .nav__logo {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .nav__links {
    gap: 16px;
  }

  .nav__link {
    font-size: 11px;
  }
}
