/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.center { text-align: center; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #999;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-label.center { justify-content: center; }
.section-label::before, .section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: #ccc;
}
.section-label:not(.center)::before { display: none; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 48px;
  font-weight: 400;
}

/* ── BUTTONS ── */
.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #fff;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  transition: all .3s;
}
.btn-outline:hover { background: #fff; color: #1a1a1a; }
.btn-outline.dark { border-color: #1a1a1a; color: #1a1a1a; }
.btn-outline.dark:hover { background: #1a1a1a; color: #fff; }
.btn-solid {
  display: inline-block;
  padding: 14px 36px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  transition: all .3s;
  border: none; cursor: pointer;
}
.btn-solid:hover { background: #333; }
.btn-solid.full { width: 100%; text-align: center; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0f0f0;
  transition: all .3s;
  overflow: hidden;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}

/* ── LOGO NAVBAR — KIỂU LENA MORGAN ── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 10;
  transition: opacity .25s;
}
.nav-logo:hover { opacity: .75; }

/* Ảnh logo (khi upload qua Admin) */
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Text logo mặc định */
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

/* Dòng 1 — tên thương hiệu lớn, serif đậm */
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1;
}

/* Dòng 2 — tagline nhỏ, cách chữ rộng, màu xám nhạt */
.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .35em;
  color: #999;
  text-transform: uppercase;
  margin-top: 5px;
}

.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 0.72rem; letter-spacing: .18em;
  color: #555; transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: #c9a96e; transform: scaleX(0);
  transition: transform .3s;
}
.nav-links a:hover { color: #1a1a1a; }
.nav-links a:hover::after { transform: scaleX(1); }
/* ── NAV SOCIAL ICONS ── */
.nav-socials {
  display: flex; align-items: center; gap: 8px;
  margin-left: 32px;
}
.nav-socials .social-icon {
  width: 26px; height: 26px;
  background: #1a1a1a;
  border: none;
  color: #fff;
  box-shadow:
    0 2px 4px rgba(0,0,0,.25),
    0 4px 10px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -2px 3px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s, background .25s;
}
.nav-socials .social-icon svg { width: 11px; height: 11px; }
.nav-socials .social-icon:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 4px 8px rgba(0,0,0,.3),
    0 8px 16px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -2px 3px rgba(0,0,0,.4);
}
.nav-social-icon {
  display: flex; align-items: center; justify-content: center;
  color: #1a1a1a !important;
  text-decoration: none;
  opacity: .7;
  transition: opacity .2s;
  flex-shrink: 0;
  line-height: 1;
}
.nav-social-icon:hover { opacity: 1; }
.nav-social-icon svg { display: block; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 1.5px; background: #1a1a1a; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 16px 32px 24px;
  border-top: 1px solid #f0f0f0;
  gap: 20px;
}
.mobile-menu a { font-size: 0.8rem; letter-spacing: .2em; color: #555; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: pan-y;
  user-select: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #1a1a1a;
  background-color: #1a1a1a;
  transform: scale(1.05);
  transition: transform 8s ease;
  pointer-events: none;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255, var(--hero-veil, .45)) 0%, rgba(255,255,255, calc(var(--hero-veil, .45) * .4)) 60%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  padding-top: 72px;
  cursor: zoom-in;
}
.hero-content-centered {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  padding-top: 56px; padding-bottom: 56px;
  max-width: 900px;
}
.hero-founder {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .42em;
  color: #444; line-height: 2;
  margin-bottom: 80px; text-transform: uppercase;
  font-weight: 400;
}
.hero-welcome-line {
  font-family: 'Beautifully Delicious Script', 'Mr De Haviland', cursive !important;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-style: italic; color: #444;
  margin-bottom: 18px; line-height: 1;
}
.hero-content-centered .hero-title {
  font-size: clamp(4rem, 11vw, 8rem) !important;
  letter-spacing: .04em;
  color: #1a1a1a !important;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1;
}
.hero-brandline {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-bottom: 36px;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  color: #2a2a2a;
}
.hero-brand-side {
  font-size: .65rem; letter-spacing: .3em; color: #888;
}
.hero-brand-main {
  font-size: .95rem; letter-spacing: .42em; font-weight: 400;
}
.hero-divider {
  width: 100%; max-width: 720px;
  border-top: 1px dotted #b8b3aa;
  margin: 18px 0;
}
.hero-content-centered .hero-sub {
  font-family: 'Jost', sans-serif !important;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: .55em;
  color: #9a958c !important;
  line-height: 2.2;
  margin: 0;
  text-transform: uppercase;
  font-weight: 300;
}
.hero-thanks {
  font-family: 'Beautifully Delicious Script', 'Mr De Haviland', cursive !important;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: #8a8680;
  margin-top: 14px;
}
.hero-cta-hidden { display: none !important; }

@media (max-width: 768px) {
  .hero-brandline {
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .hero-brand-side {
    font-size: .52rem;
    letter-spacing: .2em;
  }
  .hero-brand-main {
    font-size: .62rem;
    letter-spacing: .28em;
    white-space: nowrap;
  }
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: var(--hero-eyebrow-size, .7rem);
  letter-spacing: var(--hero-eyebrow-track, .3em);
  color: #8a7440; margin-bottom: 20px;
}
.hero-title {
  font-size: var(--hero-title-size, clamp(3rem, 7vw, 5.5rem));
  letter-spacing: var(--hero-title-track, 0);
  line-height: var(--hero-title-lead, 1.1);
  color: #222;
  margin-bottom: 24px;
  font-weight: 300;
}
.about-welcome {
  font-family: 'Beautifully Delicious Script', 'Mr De Haviland', cursive !important;
  font-weight: 400;
  font-style: italic;
  font-size: 1.4em;
  color: #b5a07a;
  display: inline-block;
  line-height: 1;
}
.hero-sub-line {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: rgba(0,0,0,.38);
  letter-spacing: .02em;
  display: inline-block;
}
.hero-sub {
  font-size: var(--hero-sub-size, .95rem);
  letter-spacing: var(--hero-sub-track, 0);
  line-height: var(--hero-sub-lead, 1.8);
  color: rgba(0,0,0,.6);
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(0,0,0,.4);
  font-size: .65rem; letter-spacing: .2em;
}
.hero-scroll span {
  width: 1px; height: 40px;
  background: rgba(0,0,0,.3);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .3; }
}

/* ── Hero Arrows ── */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; background: rgba(255,255,255,.55); border: none;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 18px; color: #333; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, opacity .25s;
  opacity: .7;
}
.hero-arrow,
.hero-thumbs,
.hero-thumb,
.hero-content a {
  cursor: pointer;
}
.hero-arrow:hover { background: rgba(255,255,255,.85); opacity: 1; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* ── Hero Thumbnails ── */
.hero-thumbs {
  position: absolute; bottom: 32px; right: 40px;
  display: flex; gap: 8px;
  z-index: 3;
}
.hero-thumb {
  width: 56px; height: 56px;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  opacity: .65;
  border: 2px solid transparent;
  transition: opacity .25s, border-color .25s, transform .2s;
}
.hero-thumb:hover  { opacity: 1; transform: translateY(-3px); }
.hero-thumb.active { opacity: 1; border-color: #333; }

/* ── Hero Lightbox ── */
.hlb {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
  flex-direction: column;
}
.hlb.open { display: flex; }
.hlb-img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
  user-select: none;
}
.hlb-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: none; color: #fff;
  font-size: 1.4rem; cursor: pointer; opacity: .7;
  transition: opacity .2s;
}
.hlb-close:hover { opacity: 1; }
.hlb-prev, .hlb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff;
  font-size: 3.5rem; cursor: pointer; opacity: .5;
  transition: opacity .2s; line-height: 1;
  padding: 0 20px; user-select: none;
}
.hlb-prev { left: 10px; }
.hlb-next { right: 10px; }
.hlb-prev:hover, .hlb-next:hover { opacity: 1; }
.hlb-counter {
  margin-top: 14px;
  font-family: 'Jost', sans-serif;
  font-size: .7rem; letter-spacing: .2em;
  color: rgba(255,255,255,.5);
}

/* ── ABOUT STRIP ── */
.about-strip { padding: 100px 0; background: #faf9f7; }
.about-grid {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 60px; align-items: center;
}
.about-img-wrap {
  aspect-ratio: 4/3; overflow: hidden;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.28), 0 8px 24px -8px rgba(0,0,0,.18);
}
.about-img-wrap img { transition: transform .6s ease; }
.about-img-wrap:hover img { transform: scale(1.04); }
.img-placeholder {
  background: linear-gradient(135deg, #e8e4df 0%, #d4cfc9 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-text { padding: 20px 0; }
.about-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 18px; line-height: 1.25;
}
.about-text h2 em { color: #c9a96e; font-style: normal; }
.about-text p { line-height: 1.9; color: #666; margin-bottom: 28px; font-size: .82rem; letter-spacing: .02em; }

/* ── COLLECTION ── */
.collection-section { padding: 100px 0; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.collection-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4;
}
.collection-item:nth-child(3) { aspect-ratio: 2/3; }
.collection-item img { transition: transform .6s ease; }
.collection-item:hover img { transform: scale(1.06); }
.collection-item .col-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: center; justify-content: center;
}
.collection-item:hover .col-overlay { opacity: 1; }
.col-overlay span {
  color: #fff; font-size: .7rem;
  letter-spacing: .2em; border: 1px solid rgba(255,255,255,.6);
  padding: 8px 20px;
}
.collection-item .col-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8e4df, #c9c4bc);
}

/* ── PRICE ── */
.price-section { padding: 100px 0; background: #faf9f7; }
.price-subtitle {
  text-align: center; color: #999; font-size: .88rem;
  letter-spacing: .05em; margin-top: -32px; margin-bottom: 56px;
}
/* Layout xoay 90°: 5 cột nằm ngang */
.price-grid {
  display: flex;
  flex-direction: row;
  gap: 4px;
  height: 700px;
  align-items: stretch;
  width: 100%;
  padding: 0;
}
/* Cột 2 hàng */
.price-col-2row {
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
}
.price-col-2row .price-card.side {
  flex: 1; aspect-ratio: unset; min-height: 0;
}
/* Cột giữa — 1 ảnh tall */
.price-col-tall {
  flex: 1.5;
  display: flex;
}
.price-col-tall .price-card.center {
  flex: 1; aspect-ratio: unset; min-height: 0;
}

/* ── MOBILE PRICE CAROUSEL ── */
.price-carousel { display: none; }
.price-dots    { display: none; }

@media (max-width: 768px) {
  /* Ẩn desktop grid, hiện carousel */
  .price-grid     { display: none !important; }
  .price-carousel {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: 68vw;
    min-height: 300px;
    max-height: 460px;
    width: 100%;
  }
  .price-carousel::-webkit-scrollbar { display: none; }

  .price-carousel .price-card {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    scroll-snap-align: start;
  }

  /* Dots */
  .price-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
  }
  .price-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background .25s, transform .25s;
    flex-shrink: 0;
  }
  .price-dot.active {
    background: #c9a96e;
    transform: scale(1.45);
  }
}
.price-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  text-decoration: none; display: block;
  flex: 1;
}
.price-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease, filter .5s ease;
  position: absolute; inset: 0;
  filter: brightness(1.05) saturate(.85);
}
.price-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.08) saturate(1);
}
.price-card .price-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #e8e4df 0%, #c9c4bc 100%);
}

/* Lớp màn sáng trắng nhẹ — giữ tone đồng đều, không làm đục */
.price-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: rgba(255, 255, 255, var(--price-veil, .55));
  mix-blend-mode: overlay;
  pointer-events: none;
  transition: opacity .4s;
}
.price-card:hover::before { opacity: 0; }

.price-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.06) 50%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px 18px;
  transition: background .3s;
}
.price-card:hover .price-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 58%, transparent 100%);
}
/* Card giữa — overlay padding lớn hơn */
.price-card.center .price-card-overlay { padding: 36px 32px; }
.price-card-tag {
  font-size: .6rem; letter-spacing: .2em;
  color: #c9a96e; margin-bottom: 6px; font-family: 'Jost', sans-serif;
}
.price-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: #fff; font-weight: 400;
  margin-bottom: 5px; line-height: 1.2;
}
.price-card.center .price-card-name { font-size: 2rem; margin-bottom: 8px; }
.price-card-price {
  font-size: .75rem; color: rgba(255,255,255,.75);
  letter-spacing: .05em; font-family: 'Jost', sans-serif;
}
.price-card.center .price-card-price { font-size: .88rem; }
.price-card-cta {
  display: inline-block; margin-top: 12px;
  padding: 7px 18px; border: 1px solid rgba(255,255,255,.5);
  color: #fff; font-size: .65rem; letter-spacing: .15em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  font-family: 'Jost', sans-serif;
}
.price-card:hover .price-card-cta { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-col-center .price-card.center { min-height: 400px; aspect-ratio: 3/4; }
}

/* ── SERVICES ── */
.services-section { padding: 80px 0; background: #faf9f7; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  display: block;
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid #e8e4df;
  transition: background .3s;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: #fff; }
.service-icon {
  width: 44px; height: 44px;
  margin: 0 auto 20px;
  color: #c9a96e;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .2em;
  margin-bottom: 12px;
}
.service-card p { font-size: .88rem; color: #777; line-height: 1.7; }

/* ── PROJECT ── */
.project-section { padding: 100px 0; }
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/5;
}
.project-card img { transition: transform .6s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-card .proj-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #ddd 0%, #bbb 100%);
}
.project-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  transform: translateY(8px);
  transition: transform .3s;
}
.project-card:hover .project-info { transform: translateY(0); }
.project-info h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff; font-size: 1.3rem; margin-bottom: 4px;
}
.project-info p { color: rgba(255,255,255,.7); font-size: .78rem; letter-spacing: .1em; }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative; padding: 120px 0;
  overflow: hidden; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: #2a2520;
  background-color: #2a2520;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.cta-content { position: relative; z-index: 2; padding: 0 32px; }
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff; margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,.75); margin-bottom: 36px; font-size: .95rem; }

/* ── CONTACT ── */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 48px; align-items: stretch;
}
.contact-info h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}
.contact-info > p { color: #666; line-height: 1.8; margin-bottom: 36px; font-size: .95rem; }
.contact-details { margin-bottom: 0; }

/* Hàng thông tin: icon vuông bo tròn + label + giá trị */
.cd-row {
  display: flex; align-items: center; gap: 14px;
  padding: 9px 0;
}
.cd-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #f2f0ed; border-radius: 9px;
  color: #1a1a1a;
}
.cd-icon svg { width: 14px; height: 14px; }
.cd-text {
  display: flex; flex-direction: row; align-items: baseline;
  gap: 12px; flex-wrap: wrap;
}
.cd-text strong {
  font-family: 'Jost', sans-serif;
  font-size: .8rem; font-weight: 600; color: #1a1a1a;
  min-width: 60px;
}
.cd-text span { font-size: .8rem; color: #555; line-height: 1.6; }

/* Hộp Need assistance */
.cd-assist {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1px solid #e5e3df; border-radius: 9px;
  padding: 12px 14px;
  margin-top: 16px;
}
.cd-assist-icon { color: #1a1a1a; flex-shrink: 0; padding-top: 2px; }
.cd-assist-icon svg { width: 14px; height: 14px; }
.cd-assist-text { display: flex; flex-direction: column; gap: 3px; }
.cd-assist-text strong {
  font-family: 'Jost', sans-serif;
  font-size: .78rem; font-weight: 600; color: #1a1a1a;
}
.cd-assist-text span { font-size: .72rem; color: #888; line-height: 1.65; }

/* Book Here */
.book-label {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 14px;
}
.book-here-wrap { position: relative; margin-top: 36px; max-width: 480px; }
.book-note {
  font-size: .76rem; color: #999;
  margin-top: 10px; letter-spacing: .02em;
}
.book-here-btn {
  display: block;
  width: 100%;
  padding: 13px 36px;
  background: #1a1a1a; color: #fff;
  border: none; border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: .78rem; font-weight: 300;
  letter-spacing: .35em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.book-here-btn:hover { background: #333; transform: translateY(-1px); }
.contact-agoda-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-left: 12px;
  padding: 13px 26px;
  background: #c8203e;
  color: #fff !important;
  font-family: 'Jost', sans-serif;
  font-size: .78rem; letter-spacing: .25em;
  text-transform: uppercase; text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 12px rgba(200,32,62,.25);
  vertical-align: middle;
}
.contact-agoda-btn:hover {
  background: #a8172f;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(200,32,62,.32);
}
.contact-agoda-btn svg { display: block; }
.book-here-btn.open { border-radius: 6px 6px 0 0; }
.book-channels {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #e5e5e5; border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  background: #fff;
}
.book-channels.open { display: grid; }
.book-channel-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  min-width: 0;
  padding: 14px 5px 12px;
  font-family: 'Jost', sans-serif; font-size: .63rem;
  font-weight: 500; letter-spacing: .025em;
  color: #1a1a1a;
  text-decoration: none;
  border-right: 1px solid #f0f0f0;
  border-bottom: none;
  transition: background .15s, color .15s;
}
.book-channel-item:last-child { border-right: none; }
.book-channel-item:hover { background: #1a1a1a; color: #fff; }
.book-channel-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 50%;
  background: linear-gradient(145deg, #f8f8f8, #e5e5e5);
  color: #1a1a1a;
  box-shadow:
    0 5px 10px rgba(38,43,51,.16),
    inset 0 1px 1px rgba(255,255,255,.95);
}
.book-channel-icon svg { width: 19px; height: 19px; flex-shrink: 0; }
.book-channel-icon svg text { fill: currentColor; }
.book-channel-arix img {
  display: block;
  width: 118%;
  max-width: none;
  height: 118%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}
.book-channel-item:hover .book-channel-icon {
  background: #f0f0f0;
  color: #1a1a1a;
}
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px;
  background: #1a1a1a;
  color: #fff !important;
  border: none;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, transform .2s;
  cursor: pointer;
}
.social-btn svg { width: 15px; height: 15px; flex-shrink: 0; fill: #fff; }
.social-btn:hover { background: #333; transform: translateY(-2px); color: #fff !important; }
/* Xoá màu riêng lẻ — tất cả đều đen */
.social-btn.zalo, .social-btn.whatsapp, .social-btn.agoda, .social-btn.facebook { background: #1a1a1a; }
.social-btn.zalo:hover, .social-btn.whatsapp:hover, .social-btn.agoda:hover, .social-btn.facebook:hover { background: #333; }

/* ── CONTACT MAP INLINE ── */
.contact-map-inline {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
/* Ảnh bản đồ thế giới */
.contact-world-map {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .contact-map-inline { min-height: 260px; }
  .contact-world-map { min-height: 260px; }
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 0;
  border: none; border-bottom: 1px solid #ddd;
  font-family: 'Jost', sans-serif; font-size: .9rem;
  outline: none; background: transparent;
  transition: border-color .3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: #1a1a1a; }
.form-group textarea { resize: vertical; }

/* ── FOOTER ── */
.footer {
  background: #f7f5f2;
  color: #888;
  padding: 32px 32px 18px;
  text-align: center;
  margin-top: 0;
}

/* ── Logo giữa ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 72px;
  overflow: hidden;
  margin-top: 28px;
  margin-bottom: 10px;
}
.footer-logo-image {
  width: auto;
  max-width: none;
  object-fit: contain;
  flex: 0 0 auto;
}
.footer-logo-text {
  display: flex; flex-direction: column;
  align-items: center; gap: 0; line-height: 1;
}
.footer-logo-main {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 3rem; font-weight: 600;
  letter-spacing: .2em; color: #1a1a1a !important;
  text-transform: uppercase; line-height: 1;
  display: block;
}
.footer-logo-sub {
  font-family: 'Jost', sans-serif !important;
  font-size: .64rem; font-weight: 400;
  letter-spacing: .38em; color: #aaa !important;
  text-transform: uppercase; margin-top: 8px;
  display: block;
}

/* ── Tagline signature ── */
.footer-tagline {
  font-family: 'Beautifully Delicious Script', 'Mr De Haviland', 'Cormorant Garamond', cursive;
  font-size: 1.3rem;
  font-style: italic;
  color: #b5b0a8;
  max-width: 760px;
  margin: 0 auto 26px;
  line-height: 1.35;
  letter-spacing: .02em;
}

/* ── Social icons tròn ── */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid #d0ceca;
  color: #888;
  text-decoration: none;
  font-size: .62rem;
  transition: border-color .25s, color .25s, background .25s;
}
.social-icon svg { width: 13px; height: 13px; }
.social-icon.the-arix-web-icon {
  overflow: hidden;
  background: linear-gradient(145deg, #f8f8f8 0%, #e5e5e5 100%);
  border-color: rgba(0,0,0,.18);
  box-shadow:
    0 4px 8px rgba(38,43,51,.16),
    0 1px 3px rgba(38,43,51,.10),
    inset 0 1px 1px rgba(255,255,255,.95);
}
.social-icon.the-arix-web-icon img {
  display: block;
  width: 120%;
  max-width: none;
  height: 120%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}
.social-icon.the-arix-web-icon:hover {
  background: #e7e7e7;
  border-color: rgba(0,0,0,.30);
}
.social-icon:hover {
  border-color: #1a1a1a;
  color: #fff;
  background: #1a1a1a;
}

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid #e8e6e2;
  padding-top: 14px;
  max-width: 1200px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 6px;
}
.footer-copy   { font-size: .68rem; letter-spacing: .04em; color: #bbb; margin: 0; }
.footer-design { font-size: .68rem; letter-spacing: .04em; color: #bbb; margin: 0; }
.footer-design strong { color: #999; font-weight: 500; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.94);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox-open { overflow: hidden; }
.lightbox img {
  max-width: min(86vw, 1280px);
  max-height: 84vh;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 20px 80px rgba(0,0,0,.42);
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2rem; color: #fff; background: none;
  border: none; cursor: pointer; line-height: 1; z-index: 2;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 54px;
  height: 70px;
  border: 0;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 3rem;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,.18); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.72);
  font-size: .65rem;
  letter-spacing: .25em;
}
@media (max-width: 768px) {
  .lightbox img { max-width: 100vw; max-height: 78vh; }
  .lightbox-nav {
    top: auto;
    bottom: 14px;
    width: 48px;
    height: 48px;
    transform: none;
    background: rgba(255,255,255,.1);
  }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
  .lightbox-counter { bottom: 29px; }
}

/* ── MOBILE QUICK LINKS ── */
.mobile-quicklinks {
  display: none;
  position: fixed; bottom: 12px; left: 14px; right: 14px; z-index: 2000;
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.mql-btn {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 12px 4px 10px;
  font-family: 'Jost', sans-serif; font-size: .65rem;
  letter-spacing: .06em;
  color: #fff !important;
  text-decoration: none; transition: background .2s;
  border-right: 1px solid rgba(255,255,255,.14); gap: 5px;
}
.mql-btn:last-child { border-right: none; }
.mql-btn svg { width: 22px; height: 22px; }
.mql-btn:active { background: rgba(255,255,255,.12); }

/* ── FADE-IN ANIMATION ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .mobile-quicklinks {
    display: flex;
    bottom: 12px;
    left: 14px;
    right: 14px;
    border-radius: 14px;
  }
  .mql-btn {
    padding: 10px 4px 8px;
    font-size: .62rem;
    letter-spacing: .05em;
    gap: 4px;
  }
  .mql-btn svg {
    width: 20px;
    height: 20px;
  }
  /* Đẩy footer lên để không bị che bởi quick links */
  .footer { padding-bottom: 86px; }
  .footer-brand { margin-top: 18px; margin-bottom: 8px; }
  .footer-tagline {
    max-width: 92vw;
    margin: 2px auto 22px;
    font-size: 1.12rem;
    line-height: 1.4;
  }
  .nav-links { display: none; }
  .nav-socials { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { height: 260px; margin-top: 40px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 3rem; }
  .hero-arrow {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.72);
  }
  .hero-arrow-prev { left: 14px; }
  .hero-arrow-next { right: 14px; }
  .hero-thumbs {
    left: 18px;
    right: 18px;
    bottom: 96px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .hero-thumbs::-webkit-scrollbar { display: none; }
  .hero-thumb {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }
  .hlb-img {
    max-width: 94vw;
    max-height: 78vh;
  }
  .hlb-prev,
  .hlb-next {
    font-size: 2.6rem;
    padding: 0 12px;
  }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}
@media (max-width: 480px) {
  .project-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid #e8e4df; }
}

/* ──────────────────────────────────────────────────────────────
   LAMARK-INSPIRED HOME REDESIGN
   Clean white navigation, framed hero, centered quote and mosaic gallery.
   These rules intentionally live last so older Admin-compatible classes can
   keep their names without leaking the former price-list layout.
   ────────────────────────────────────────────────────────────── */
:root {
  --gallery-gap: 12px;
  --gallery-max: 1120px;
}

#home,
#gallery,
#service,
#contact { scroll-margin-top: 72px; }

.navbar {
  background: rgba(255,255,255,.96);
  border-bottom-color: rgba(0,0,0,.045);
  backdrop-filter: blur(16px);
}
.nav-inner { max-width: var(--gallery-max); height: 72px; }
.nav-links { gap: clamp(22px, 3vw, 42px); margin-left: auto; }
.nav-links a {
  color: #252525;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .26em;
}
.nav-socials { margin-left: 26px; }
.nav-socials .social-icon {
  width: 25px;
  height: 25px;
  background: transparent;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: none;
}
.nav-socials .social-icon:hover {
  color: #fff;
  background: #1a1a1a;
  box-shadow: none;
}
.nav-socials .social-icon.the-arix-web-icon {
  background: linear-gradient(145deg, #f8f8f8 0%, #e5e5e5 100%);
  box-shadow:
    0 3px 6px rgba(38,43,51,.15),
    inset 0 1px 1px rgba(255,255,255,.95);
}

.hero {
  height: calc(86svh - 72px);
  min-height: 560px;
  max-height: 820px;
  margin-top: 72px;
  justify-content: center;
}
.hero-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: saturate(.82) brightness(1.04);
}
.hero-overlay {
  background: rgba(255,255,255, calc(var(--hero-veil, .62) * .30));
}
.hero-content {
  width: min(560px, calc(100% - 160px));
  max-width: 560px;
  min-height: min(42vh, 370px);
  margin: 0 auto;
  padding: 38px 48px;
  text-align: center;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  backdrop-filter: none;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-1.5vh);
  isolation: isolate;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: 0 0 0 12px rgba(255,255,255,.10), 0 22px 58px rgba(0,0,0,.07);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero-content > * {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.hero-eyebrow {
  color: #343434;
  font-size: var(--hero-eyebrow-size, .7rem);
  font-weight: 500;
  letter-spacing: var(--hero-eyebrow-track, .2em);
  margin-bottom: 22px;
}
.hero-title {
  color: #171717;
  font-size: clamp(1.9rem, var(--hero-title-size, 3.2rem), 5.2rem);
  font-weight: 400;
  letter-spacing: var(--hero-title-track, -.02em);
  line-height: var(--hero-title-lead, .98);
  margin-bottom: 22px;
  font-variant-ligatures: none;
  font-feature-settings: 'liga' 0, 'clig' 0, 'calt' 0, 'salt' 0, 'swsh' 0;
}
.hero-font-flatline .hero-title .hero-glyph-fix {
  font-family: 'Helvetica Neue', Arial, sans-serif !important;
  font-feature-settings: normal;
  font-variant-ligatures: none;
}
.hero-sub {
  color: rgba(0,0,0,.72);
  font-size: var(--hero-sub-size, .9rem);
  letter-spacing: var(--hero-sub-track, 0);
  line-height: var(--hero-sub-lead, 1.65);
  margin: 0 0 24px;
}
.hero-content .btn-solid {
  min-width: 150px;
  padding: 11px 20px;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  font-size: var(--hero-cta-size, .7rem);
  letter-spacing: var(--hero-cta-track, .24em);
  font-weight: 600;
}
.hero-content .btn-solid:hover {
  color: #111;
  background: #fff;
  border-color: #111;
}
.hero-thumbs { bottom: 22px; right: 30px; }
.hero-thumb {
  width: 46px;
  height: 46px;
  border-radius: 0;
  filter: grayscale(1) saturate(0) contrast(.92);
}

/* ABOUT is replaced by one centered quote, as requested. */
.quote-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 106px 28px 98px;
  background: #fff;
}
.quote-frame {
  width: min(760px, 100%);
  text-align: center;
}
.quote-kicker,
.quote-location {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .38em;
  color: #242424;
}
.quote-frame blockquote {
  margin: 24px auto 22px;
  color: #505050;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
}
.quote-frame blockquote::before { content: '“'; }
.quote-frame blockquote::after { content: '”'; }
.quote-rule {
  display: block;
  width: 34px;
  height: 1px;
  margin: 0 auto 18px;
  background: #1a1a1a;
}
.quote-location { color: #999; font-size: .55rem; }

/* Home Gallery — editorial album-cover layout from the supplied template. */
.gallery-section {
  padding: 68px 0 104px;
  background: #efefed;
}
.gallery-section .price-grid {
  display: block;
  width: min(1180px, calc(100% - 64px));
  height: auto;
  margin: 0 auto;
  padding: 0;
}
.gallery-editorial {
  width: 100%;
  padding: clamp(18px, 3.2vw, 42px);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.035);
}
.gallery-editorial-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.gallery-editorial-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  margin-top: 62px;
}
.gallery-editorial-left,
.gallery-editorial-right {
  min-width: 0;
}
.editorial-photo {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #eee;
  cursor: zoom-in;
}
.editorial-photo-top { aspect-ratio: 1.07 / 1; }
.editorial-photo-portrait { aspect-ratio: .70 / 1; }
.editorial-photo-right { aspect-ratio: .76 / 1; }
.editorial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .35s ease;
}
.editorial-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.12);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-square-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #111;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -42%);
  transition: opacity .3s ease, transform .3s ease;
}
.editorial-photo:hover img { transform: scale(1.035); filter: brightness(.94); }
.editorial-photo:hover::after,
.editorial-photo:hover .gallery-square-icon { opacity: 1; }
.editorial-photo:hover .gallery-square-icon { transform: translate(-50%, -50%); }
.editorial-photo:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: -2px;
}
.gallery-editorial-closing {
  width: 100%;
  margin-top: 34px;
  padding: 18px 6px 4px;
  text-align: left;
}
.gallery-editorial-closing h3 {
  margin: 0 0 14px;
  color: #49301c;
  font-size: clamp(1.25rem, 2.5vw, 2.1rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: .08em;
}
.gallery-editorial-closing > p:not(:last-child) {
  margin: 0;
  max-width: 520px;
  color: #777;
  font-size: clamp(.66rem, .92vw, .82rem);
  line-height: 1.9;
  letter-spacing: .04em;
}
.gallery-editorial-closing > p:last-child {
  margin: 18px 0 0;
  color: #56504a;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}
.gallery-editorial-copy {
  min-height: clamp(178px, 20vw, 245px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px 24px;
  text-align: center;
}
.gallery-editorial-kicker {
  margin: 0 0 22px;
  color: #aaa5a0;
  font-size: clamp(.56rem, 1.05vw, .82rem);
  font-weight: 300;
  letter-spacing: .20em;
}
.gallery-editorial-title {
  margin: 0;
  color: #49301c;
  font-size: clamp(2rem, 4.35vw, 3.55rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .055em;
  white-space: nowrap;
}
.gallery-editorial-categories {
  margin: 22px 0 0;
  color: #99938f;
  font-size: clamp(.48rem, .86vw, .68rem);
  font-weight: 500;
  letter-spacing: .34em;
  white-space: nowrap;
}
.gallery-next-wrap { margin-top: 42px; text-align: center; }
.gallery-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 150px;
  padding: 13px 24px;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .24em;
  transition: color .25s ease, background .25s ease;
}
.gallery-next:hover { color: #111; background: #fff; }

.services-section { background: #fff; padding: 104px 0; }
.contact-section { background: #fff; }

@media (max-width: 900px) and (min-width: 769px) {
  .nav-inner { padding: 0 22px; }
  .nav-links { gap: 18px; }
  .nav-socials { margin-left: 16px; gap: 5px; }
  .gallery-section .price-grid { width: calc(100% - 36px); }
}

@media (max-width: 768px) {
  #home,
  #gallery,
  #service,
  #contact { scroll-margin-top: 64px; }
  .nav-inner { height: 64px; padding: 0 20px; }
  .hero {
    height: calc(78svh - 64px);
    min-height: 520px;
    margin-top: 64px;
  }
  .hero-content {
    width: min(82vw, 470px);
    min-height: 320px;
    padding: 28px 22px;
    transform: translateY(-2vh);
  }
  .hero-content::before { width: auto; }
  .hero-content > * { max-width: 100%; }
  .hero-title { font-size: min(var(--hero-title-size, 2.8rem), 11vw); }
  .hero-eyebrow { letter-spacing: var(--hero-eyebrow-track, .18em); }
  .hero-sub { font-size: var(--hero-sub-size, .85rem); }
  .hero-thumbs { left: 18px; right: 18px; bottom: 18px; }
  .quote-section { padding: 78px 24px 72px; }
  .quote-frame blockquote { font-size: 1.45rem; }
  .gallery-section { padding: 48px 0 78px; }
  .gallery-section .price-grid {
    display: block !important;
    width: calc(100% - 18px);
  }
  .gallery-editorial { padding: 8px; }
  .gallery-editorial-top { gap: 3px; }
  .gallery-editorial-bottom { gap: 5px; margin-top: 22px; }
  .gallery-editorial-copy {
    min-height: clamp(104px, 22vw, 170px);
    padding: 10px 4px 12px;
  }
  .gallery-editorial-kicker {
    margin-bottom: 9px;
    font-size: clamp(.36rem, 1.55vw, .56rem);
    letter-spacing: .14em;
  }
  .gallery-editorial-title {
    font-size: clamp(.92rem, 5.1vw, 2.25rem);
    letter-spacing: .025em;
  }
  .gallery-editorial-categories {
    margin-top: 10px;
    font-size: clamp(.3rem, 1.22vw, .48rem);
    letter-spacing: .16em;
  }
  .gallery-editorial-closing {
    width: 100%;
    margin-top: 12px;
    padding: 8px 2px 2px;
  }
  .gallery-editorial-closing h3 {
    margin-bottom: 6px;
    font-size: clamp(.72rem, 3.8vw, 1.2rem);
  }
  .gallery-editorial-closing > p:not(:last-child) {
    font-size: clamp(.36rem, 1.55vw, .56rem);
    line-height: 1.55;
  }
  .gallery-editorial-closing > p:last-child {
    margin-top: 8px;
    font-size: clamp(.8rem, 4vw, 1.25rem);
  }
  .gallery-square-icon { display: none; }
  .gallery-next-wrap { margin-top: 30px; }
}

@media (max-width: 420px) {
  .hero-content { width: calc(100% - 54px); min-height: 300px; padding: 26px 18px; }
  .hero-arrow { width: 34px; height: 34px; }
  .hero-arrow-prev { left: 8px; }
  .hero-arrow-next { right: 8px; }
  .quote-kicker { letter-spacing: .28em; }
}
