:root {
  --ink: #202020;
  --charcoal: #353535;
  --cream: #f5f1ec;
  --paper: #fbfaf8;
  --white: #ffffff;
  --muted: #7d786f;
  --line: rgba(32, 32, 32, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --max: 1320px;
  --header-height: 96px;
  --mobile-header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(32, 32, 32, 0.10);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.logo img {
    display: block;
    width: auto;
    height: 100px;
    max-width: 260px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        height: 54px;
        max-width: 180px;
    }
}

.logo-text {
  width: auto;
  height: auto;
  overflow: visible;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  color: var(--ink);
}

.logo-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.logo-subtitle {
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.43em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a::after,
.text-link::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease;
}

/* HERO */

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  margin-top: 98px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--charcoal);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 22, 22, 0.72) 0%, rgba(22, 22, 22, 0.38) 43%, rgba(22, 22, 22, 0.09) 76%),
    linear-gradient(0deg, rgba(22, 22, 22, 0.24), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-right: 48%;
}

.eyebrow {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 11px;
  font-weight: 500;
}

.eyebrow.dark {
  color: #746e66;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 7vw, 106px);
  line-height: 0.95;
}

.hero-copy {
  max-width: 690px;
  margin: 30px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  line-height: 1.9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 34px;
  padding: 0 25px;
  border: 1px solid;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.slider-controls {
  position: absolute;
  right: 64px;
  bottom: 46px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.slide-count {
  min-width: 52px;
  text-align: center;
  letter-spacing: 0.15em;
  font-size: 11px;
}

/* GENERAL SECTIONS */

.section {
  padding: 130px 24px;
}

.intro-inner {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.intro h2,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1;
}

.intro p:last-child {
  max-width: 760px;
  margin: 32px auto 0;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 11px;
  line-height: 2;
  color: var(--muted);
}

.split-layout {
  width: min(100%, calc(var(--max) + 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}

.about-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

/* SERVICES */

.services {
  background: var(--cream);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 58px;
}

.service-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.service-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-card-copy {
  padding: 26px 28px 32px;
}

.service-card-copy span {
  font-size: 10px;
  letter-spacing: 0.2em;
}

.service-card-copy h3 {
  margin: 42px 0 12px;
  font-size: 34px;
  line-height: 1;
}

.service-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* PORTFOLIO */

.portfolio-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.portfolio-item {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  aspect-ratio: 4 / 5;
  background: #eeeeee;
  cursor: zoom-in;
}

.portfolio-item.tall {
  aspect-ratio: 3 / 5;
}

.portfolio-item.wide {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.portfolio-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.035);
}

/* TESTIMONIALS */

.testimonials {
  background: var(--charcoal);
  color: var(--white);
}

.testimonial-inner {
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.testimonial-track {
  position: relative;
  min-height: 260px;
}

.testimonial {
  display: none;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
}

.testimonial.active {
  display: block;
}

.testimonial cite {
  display: block;
  margin-top: 30px;
  font-family: var(--sans);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.66);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background: var(--white);
}

/* CONTACT */

.contact {
  background: var(--cream);
}

.contact-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 34px;
}

.contact-links a {
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 25px;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 40px;
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 0;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-bottom-color: var(--ink);
}

.contact-form .button {
  justify-self: start;
  margin-top: 6px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

/* FOOTER */

.site-footer {
  padding: 72px 24px 28px;
  background: var(--paper);
}

.site-footer > * {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.site-footer > p {
  color: var(--muted);
}

.footer-logo {
  display: inline-flex;
  width: 120px !important;
  height: 82px;
  overflow: hidden;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.footer-logo img {
  width: 120px !important;
  height: 120px !important;
  max-height: none !important;
  object-fit: contain;
  transform: scale(1.45);
  transform-origin: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.footer-bottom a {
  text-decoration: none;
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 10, 10, 0.94);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 26px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 44px;
  cursor: pointer;
}

/* ANIMATIONS */

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

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

.image-missing {
  visibility: hidden;
}

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

.footer-logo {
  display: inline-flex;
  width: 108px !important;
  height: 78px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-logo img {
  width: 104px !important;
  height: 104px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  transform: scale(1.04);
}

/* =========================================================
   TABLET + MOBILE
   ========================================================= */

@media (max-width: 980px) {
  :root {
    --header-height: var(--mobile-header-height);
  }

  .site-header {
    height: var(--mobile-header-height);
    background: var(--white);
    backdrop-filter: none;
  }

  .header-inner {
    width: 100%;
    padding: 0 18px;
    gap: 14px;
  }

  .logo {
    position: relative;
    z-index: 103;
    width: 104px;
    height: 60px;
  }

  .logo img {
    width: 100px;
    height: 100px;
    transform: scale(1.02);
  }

  .logo-name {
    font-size: 24px;
  }

  .logo-subtitle {
    margin-top: 5px;
    font-size: 7px;
  }

  .menu-toggle {
    position: relative;
    z-index: 103;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: var(--mobile-header-height) 0 auto;
    z-index: 102;
    max-height: calc(100svh - var(--mobile-header-height));
    padding: 8px 18px 22px;
    background: var(--white);
    border-bottom: 1px solid rgba(32, 32, 32, 0.12);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.10);
    display: block;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 2px;
    color: var(--ink);
    border-bottom: 1px solid rgba(32, 32, 32, 0.10);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.17em;
  }

  .main-nav a::after {
    content: "›";
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    background: none;
    transform: none;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - var(--mobile-header-height));
    margin-top: var(--mobile-header-height);
    align-items: flex-end;
    background:
      radial-gradient(
        circle at 72% 22%,
        rgba(216, 195, 165, 0.22),
        transparent 34%
      ),
      linear-gradient(
        145deg,
        #2d2b29 0%,
        #111111 72%
      );
  }

  .hero-slide img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(10, 10, 10, 0.88) 0%,
        rgba(10, 10, 10, 0.50) 55%,
        rgba(10, 10, 10, 0.22) 100%
      );
  }

  .hero-content {
    width: 100%;
    padding: 96px 24px 104px;
  }

  .hero .eyebrow {
    max-width: 310px;
    margin-bottom: 18px;
    font-size: 9px;
    line-height: 1.7;
    letter-spacing: 0.28em;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(45px, 13vw, 67px);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 520px;
    margin-top: 24px;
    font-size: 9px;
    line-height: 1.9;
    letter-spacing: 0.15em;
  }

  .hero .button {
    min-height: 46px;
    margin-top: 25px;
    padding: 0 20px;
    font-size: 10px;
  }

  .slider-controls {
    right: 20px;
    bottom: 22px;
    gap: 10px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .slide-count {
    min-width: 42px;
    font-size: 9px;
  }

  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 680px) {
  .header-inner {
    padding: 0 14px;
  }

  .logo {
    width: 88px;
    height: 56px;
  }

  .logo img {
    width: 86px;
    height: 86px;
    transform: scale(1);
  }

  .hero-content {
    padding: 78px 20px 96px;
  }

  .hero h1 {
    font-size: clamp(41px, 12.5vw, 55px);
  }

  .hero-copy {
    max-width: 95%;
  }

  .section {
    padding: 90px 18px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .portfolio-item,
  .portfolio-item.wide {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 5;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .contact-links a {
    font-size: 21px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .logo {
    width: 82px;
    height: 54px;
  }

  .logo img {
    width: 80px;
    height: 80px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 52px);
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   INSTAGRAM + LOCATION
   ========================================================= */

.social-location {
  background: var(--paper);
}

.social-location-heading {
  width: min(100%, var(--max));
  margin: 0 auto 48px;
}

.social-location-heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.social-location-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.instagram-panel,
.location-panel {
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.panel-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.panel-kicker {
  margin: 0 0 7px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 10px;
  font-weight: 500;
}

.panel-topline h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.panel-link,
.instagram-button {
  flex: 0 0 auto;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
}

.panel-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

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

.instagram-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}

.instagram-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.instagram-grid a:hover img {
  transform: scale(1.04);
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
}

.google-review-row {
  min-height: 46px;
  margin-bottom: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  font-size: 12px;
}

.google-review-row a {
  text-decoration: none;
  border-bottom: 1px solid rgba(32, 32, 32, 0.35);
}

.review-stars {
  letter-spacing: 0.12em;
  font-size: 15px;
}

.map-frame {
  overflow: hidden;
  min-height: 355px;
  background: var(--cream);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 355px;
  border: 0;
}

.panel-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 980px) {
  .social-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .social-location-heading {
    margin-bottom: 34px;
  }

  .instagram-panel,
  .location-panel {
    padding: 20px;
  }

  .panel-topline {
    gap: 16px;
  }

  .panel-topline h3 {
    font-size: 27px;
  }

  .instagram-grid {
    gap: 5px;
  }

  .google-review-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 310px;
    height: 310px;
  }
}

