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

    ::selection {
      background: #111111;
      color: #ffffff;
    }

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

    body {
      font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #ffffff;
      color: #111111;
      font-weight: 400;
      line-height: 1.6;
      -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;
    }

    /* ============================================================
       UTILITY
    ============================================================ */
    .u-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #666666;
    }

    .u-sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

    /* ============================================================
       SCROLL REVEAL
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.is-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.32s; }
    .reveal-delay-4 { transition-delay: 0.44s; }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s ease;
    }

    .nav.scrolled {
      border-bottom-color: #EAEAEA;
    }

    .nav__logo {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #111111;
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav__links a {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: #666666;
      text-transform: uppercase;
      transition: color 0.2s ease;
    }

    .nav__links a:hover {
      color: #111111;
    }

    .nav__cta {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #111111;
      border-bottom: 1px solid #111111;
      padding-bottom: 1px;
      transition: opacity 0.2s ease;
    }

    .nav__cta:hover {
      opacity: 0.55;
    }

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

    .nav__hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: #111111;
      transition: all 0.3s ease;
    }

    /* ============================================================
       MOBILE MENU
    ============================================================ */
    .mobile-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      bottom: 0;
      background: #ffffff;
      z-index: 99;
      display: flex;
      flex-direction: column;
      padding: 48px;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-menu.is-open {
      transform: translateX(0);
    }

    .mobile-menu__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 32px;
      margin-top: 24px;
    }

    .mobile-menu__links a {
      font-size: 1.5rem;
      font-weight: 500;
      color: #111111;
      letter-spacing: -0.01em;
    }

    .mobile-menu__bottom {
      margin-top: auto;
      padding-top: 48px;
      border-top: 1px solid #EAEAEA;
    }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 64px;
    }

    .hero__content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 48px 80px 48px;
      max-width: 600px;
    }

    .hero__eyebrow {
      margin-bottom: 40px;
    }

    .hero__headline {
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: #111111;
      margin-bottom: 28px;
    }

    .hero__sub {
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.75;
      color: #666666;
      max-width: 400px;
      margin-bottom: 52px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #111111;
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 32px;
      border: 1px solid #111111;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
      width: fit-content;
    }

    .btn-primary:hover {
      background: transparent;
      color: #111111;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: #111111;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 32px;
      border: 1px solid #111111;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
      width: fit-content;
    }

    .btn-secondary:hover {
      background: #111111;
      color: #ffffff;
    }

    .hero__image-wrap {
      position: relative;
      overflow: hidden;
      background: #f5f5f3;
    }

    .hero__image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero__image-wrap:hover img {
      transform: scale(1.03);
    }

    .hero__scroll-hint {
      position: absolute;
      bottom: 40px;
      left: 48px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #999;
    }

    .hero__scroll-hint::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: #999;
    }

    /* ============================================================
       ABOUT
    ============================================================ */
    .about {
      display: grid;
      grid-template-columns: 5fr 7fr;
      min-height: 80vh;
      border-top: 1px solid #EAEAEA;
    }

    .about__image-col {
      position: relative;
      overflow: hidden;
      background: #f5f5f3;
    }

    .about__image-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

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

    .about__content {
      padding: 96px 80px 96px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about__eyebrow {
      margin-bottom: 36px;
    }

    .about__headline {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin-bottom: 32px;
      max-width: 480px;
    }

    .about__body {
      font-size: 0.9375rem;
      line-height: 1.85;
      color: #555555;
      max-width: 460px;
    }

    .about__body p + p {
      margin-top: 20px;
    }

    .about__detail {
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid #EAEAEA;
      display: flex;
      gap: 48px;
    }

    .about__detail-item {}

    .about__detail-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #999;
      margin-bottom: 6px;
    }

    .about__detail-value {
      font-size: 0.875rem;
      font-weight: 500;
      color: #111111;
    }

    /* ============================================================
       SERVICES
    ============================================================ */
    .services {
      padding: 112px 48px;
      border-top: 1px solid #EAEAEA;
    }

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

    .services__header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 80px;
      align-items: end;
    }

    .services__headline {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.025em;
    }

    .services__intro {
      font-size: 0.9375rem;
      line-height: 1.8;
      color: #666666;
      max-width: 400px;
      padding-bottom: 6px;
    }

    .services__list {
      list-style: none;
    }

    .services__item {
      display: grid;
      grid-template-columns: 1fr 3fr 1fr;
      align-items: start;
      gap: 40px;
      padding: 36px 0;
      border-top: 1px solid #EAEAEA;
      transition: background 0.2s ease;
      cursor: default;
    }

    .services__item:last-child {
      border-bottom: 1px solid #EAEAEA;
    }

    .services__item-number {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: #bbbbbb;
      padding-top: 4px;
    }

    .services__item-name {
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #111111;
      margin-bottom: 8px;
    }

    .services__item-desc {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #777777;
      max-width: 380px;
    }

    .services__item-tag {
      text-align: right;
      padding-top: 4px;
    }
/* ============================================================
   PRICING
============================================================ */
.pricing {
  padding: 112px 48px;
  border-top: 1px solid #EAEAEA;
}

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

.pricing__header {
  margin-bottom: 72px;
}

.pricing__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-top: 16px;
}

.pricing__list {
  list-style: none;
}

.pricing__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid #EAEAEA;
  transition: opacity 0.2s ease;
}

.pricing__item:last-child {
  border-bottom: 1px solid #EAEAEA;
}

.pricing__item-left {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
}

.pricing__item-number {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #bbbbbb;
  padding-top: 4px;
  flex-shrink: 0;
}

.pricing__item-name {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
  margin-bottom: 6px;
}

.pricing__item-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #888888;
  max-width: 460px;
}

.pricing__item-price {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111111;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing__note {
  margin-top: 40px;
  font-size: 0.8125rem;
  color: #aaaaaa;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing {
    padding: 72px 24px;
  }

  .pricing__item {
    align-items: flex-start;
    padding: 28px 0;
  }

  .pricing__item-price {
    font-size: 1.25rem;
  }
}

@media (max-width: 540px) {
  .pricing__item {
    flex-direction: column;
    gap: 16px;
  }

  .pricing__item-price {
    font-size: 1.5rem;
    padding-left: calc(0.6875rem + 32px);
  }
}
    /* ============================================================
       GALLERY
    ============================================================ */
    .gallery {
      border-top: 1px solid #EAEAEA;
      padding: 112px 48px;
    }

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

    .gallery__header {
      margin-bottom: 64px;
    }

    .gallery__headline {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin-top: 16px;
    }

    /* Editorial asymmetric grid */
    .gallery__grid {
      display: grid;
      grid-template-columns: repeat(13, 1fr);
      grid-template-rows: auto;
      gap: 12px;
    }

    .gallery__cell {
      overflow: hidden;
      background: #f5f5f3;
    }

    .gallery__cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .gallery__cell:hover img {
      transform: scale(1.04);
    }

    /* Cell placement */
    .gallery__cell--1 {
      grid-column: 1 / 8;
      grid-row: 1;
      aspect-ratio: 4 / 5;
    }

    .gallery__cell--3 {
      grid-column: 8 / 13;
      grid-row: 1;
      aspect-ratio: 3 / 5;
    }

    .gallery__cell--4 {
      grid-column: 1 / 5;
      grid-row: 2;
      aspect-ratio: 4 / 5;
    }

    .gallery__cell--5 {
      grid-column: 5 / 9;
      grid-row: 2;
      aspect-ratio: 4 / 5;
    }

    .gallery__cell--6 {
      grid-column: 9 / 13;
      grid-row: 2;
      aspect-ratio: 4 / 5;
    }

    /* ============================================================
       PHILOSOPHY
    ============================================================ */
    .philosophy {
      border-top: 1px solid #EAEAEA;
      padding: 140px 48px;
    }

    .philosophy__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 3fr 5fr;
      gap: 80px;
      align-items: start;
    }

    .philosophy__left {}

    .philosophy__quote {
      font-size: clamp(1.6rem, 3vw, 2.8rem);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.03em;
      color: #111111;
    }

    .philosophy__right {
      padding-top: 8px;
    }

    .philosophy__body {
      font-size: 1rem;
      line-height: 1.85;
      color: #666666;
      max-width: 480px;
      margin-bottom: 40px;
    }

    .philosophy__values {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .philosophy__value {
      padding: 18px 0;
      border-top: 1px solid #EAEAEA;
      font-size: 0.9375rem;
      font-weight: 500;
      color: #111111;
      letter-spacing: -0.01em;
    }

    .philosophy__value:last-child {
      border-bottom: 1px solid #EAEAEA;
    }

    /* ============================================================
       LOCATION
    ============================================================ */
    .location {
      border-top: 1px solid #EAEAEA;
      padding: 112px 48px;
    }

    .location__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .location__left {}

    .location__headline {
      font-size: clamp(1.6rem, 2.8vw, 2.4rem);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.15;
      margin-top: 16px;
      margin-bottom: 36px;
    }

    .location__address {
      font-size: 1.25rem;
      font-weight: 500;
      line-height: 1.7;
      color: #111111;
      letter-spacing: -0.01em;
      margin-bottom: 12px;
    }

    .location__city {
      font-size: 0.875rem;
      color: #888888;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .location__map {
      width: 100%;
      aspect-ratio: 4 / 3;
      background: #f0efed;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #EAEAEA;
      overflow: hidden;
      position: relative;
    }

    .location__map-placeholder {
      text-align: center;
    }

    .location__map-placeholder p {
      font-size: 0.75rem;
      color: #aaaaaa;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 10px;
    }

    .location__map iframe {
      width: 100%;
      height: 100%;
      border: none;
      position: absolute;
      top: 0; left: 0;
    }

    /* ============================================================
       CTA SECTION
    ============================================================ */
    .cta-section {
      border-top: 1px solid #EAEAEA;
      padding: 140px 48px;
    }

    .cta-section__inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .cta-section__eyebrow {
      margin-bottom: 36px;
    }

    .cta-section__headline {
      font-size: clamp(2.4rem, 5vw, 5rem);
      font-weight: 600;
      letter-spacing: -0.04em;
      line-height: 1.05;
      max-width: 700px;
      margin-bottom: 36px;
    }

    .cta-section__sub {
      font-size: 0.9375rem;
      line-height: 1.8;
      color: #666666;
      max-width: 400px;
      margin-bottom: 52px;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
      background: #111111;
      color: #ffffff;
      padding: 64px 48px;
      border-top: 1px solid #EAEAEA;
    }

    .footer__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .footer__logo {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .footer__tagline {
      font-size: 0.8125rem;
      color: #888888;
      line-height: 1.7;
    }

    .footer__col-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #555555;
      margin-bottom: 16px;
    }

    .footer__address {
      font-size: 0.875rem;
      color: #cccccc;
      line-height: 1.8;
    }

    .footer__ig-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      font-weight: 500;
      color: #cccccc;
      letter-spacing: 0.02em;
      transition: color 0.2s ease;
    }

    .footer__ig-link:hover {
      color: #ffffff;
    }

    .footer__bottom {
      max-width: 1200px;
      margin: 48px auto 0;
      padding-top: 28px;
      border-top: 1px solid #2a2a2a;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer__copy {
      font-size: 0.75rem;
      color: #555555;
      letter-spacing: 0.04em;
    }

    /* ============================================================
       IMAGE PLACEHOLDER
    ============================================================ */
    .img-placeholder {
      width: 100%;
      height: 100%;
      min-height: 100%;
      background: #eeede9;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .img-placeholder svg {
      opacity: 0.25;
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1100px) {
      .nav { padding: 0 32px; }
      .hero__content { padding: 64px 32px; }
      .about__content { padding: 72px 48px 72px 48px; }
      .services { padding: 80px 32px; }
      .gallery { padding: 80px 32px; }
      .philosophy { padding: 100px 32px; }
      .location { padding: 80px 32px; }
      .cta-section { padding: 100px 32px; }
      .footer { padding: 56px 32px; }
    }

    @media (max-width: 900px) {
      .nav__links { display: none; }
      .nav__cta { display: none; }
      .nav__hamburger { display: flex; }
      .nav { padding: 0 24px; }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero__content {
        padding: 48px 24px 56px;
        max-width: 100%;
        order: 2;
      }

      .hero__image-wrap {
        order: 1;
        min-height: 480px;
        height: 60vw;
        max-height: 600px;
      }

      .hero__scroll-hint { display: none; }

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

      .about__image-col {
        min-height: 400px;
        height: 70vw;
        max-height: 520px;
      }

      .about__content {
        padding: 56px 24px;
      }

      .about__detail {
        flex-wrap: wrap;
        gap: 28px;
      }

      .services { padding: 72px 24px; }
      .services__header {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .services__item {
        grid-template-columns: auto 1fr;
        gap: 20px;
      }
      .services__item-tag { display: none; }

      .gallery { padding: 72px 24px; }
      .gallery__grid {
        grid-template-columns: 1fr;
      }
      .gallery__cell {
        grid-column: auto !important;
        grid-row: auto !important;
        aspect-ratio: 4 / 5;
      }
      .philosophy { padding: 80px 24px; }
      .philosophy__inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .location { padding: 72px 24px; }
      .location__inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .cta-section { padding: 80px 24px; }
      .footer { padding: 48px 24px; }
      .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
      .footer__inner > *:first-child {
        grid-column: 1 / -1;
      }

      .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
    }

    @media (max-width: 540px) {
      .hero__headline { font-size: 2.2rem; }
      .about__headline { font-size: 1.6rem; }
      .services__item-name { font-size: 1.1rem; }
      .philosophy__quote { font-size: 1.5rem; }
      .cta-section__headline { font-size: 2.2rem; }
      .footer__inner { grid-template-columns: 1fr; }
    }
