/* ============================================
   DESIGNERS EMPORIUM
   Refined editorial aesthetic
   ============================================ */

:root {
  /* Palette */
  --ink:        #1a1f1c;   /* near-black with green undertone */
  --forest:     #2d3a30;   /* deep brand green */
  --forest-2:   #1f2a23;   /* darker green */
  --moss:       #4a5a4d;
  --cream:      #f5f1e8;   /* warm cream */
  --bone:       #ebe5d6;   /* warm bone */
  --sand:       #d9c9a8;   /* sand accent */
  --terracotta: #b4754a;   /* warm accent */
  --rule:       rgba(26, 31, 28, 0.12);
  --rule-light: rgba(245, 241, 232, 0.18);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Outfit", system-ui, sans-serif;

  /* Layout */
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --max:    1440px;
}

/* ───── Reset / base ───── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  transition: background 0.4s ease, padding 0.4s ease, color 0.4s ease;
  color: var(--cream);
}
.nav.scrolled {
  background: rgba(245, 241, 232, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.85rem var(--gutter);
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 400;
}
.brand-word { font-style: italic; }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 0.4rem 0;
  transition: opacity 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.4s cubic-bezier(.6,0,.2,1);
}
.nav-links a:hover::after { right: 0; }

.account-link {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav.scrolled .account-link:hover {
  background: var(--ink);
  color: var(--cream);
}
.nav:not(.scrolled) .account-link:hover {
  background: var(--cream);
  color: var(--ink);
}

.nav-toggle { display: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--cream);
  overflow: hidden;
  padding: 5rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroIn 1.6s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes heroIn {
  from { transform: scale(1.08); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,31,28,0.55) 0%, rgba(26,31,28,0.15) 30%, rgba(26,31,28,0.0) 55%, rgba(26,31,28,0.65) 100%),
    linear-gradient(90deg,  rgba(26,31,28,0.45) 0%, rgba(26,31,28,0.0) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding-bottom: 4vh;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: rise 1s ease 0.4s forwards;
}
.hero-eyebrow .line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: currentColor;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8.5vw, 8.75rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .ht-1 { animation-delay: 0.5s; }
.hero-title .ht-2 { animation-delay: 0.7s; padding-left: clamp(1rem, 8vw, 7rem); }
.hero-title .ht-3 { animation-delay: 0.9s; }
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sand);
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  max-width: 540px;
  margin: 0 0 2.5rem;
  opacity: 0;
  animation: rise 1s ease 1.1s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 1s ease 1.25s forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise 1s ease 1.4s forwards;
}
.hero-meta > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: var(--sans);
}
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.cue-line {
  width: 1px;
  height: 50px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.cue-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 50%;
  background: var(--ink);
  animation: cueSlide 2.4s ease-in-out infinite;
}
@keyframes cueSlide {
  0%,100% { transform: translateY(-100%); }
  50%     { transform: translateY(200%); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 1.8rem;
  border-radius: 999px;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  border: 1px solid transparent;
  font-weight: 400;
}
.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-light:hover {
  background: var(--sand);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
}
.btn-solid {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  padding: 1.15rem 2rem;
}
.btn-solid:hover {
  background: var(--forest-2);
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   SECTION SHARED
   ============================================ */
.section-head {
  max-width: var(--max);
  margin: 0 auto 4rem;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 3rem;
  align-items: end;
}
.section-tag, .intro-tag, .why-tag {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.numeral {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--terracotta);
  font-weight: 400;
  line-height: 1;
}
.label { font-weight: 400; color: var(--moss); }
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.85rem, 3.2vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
.section-title-lg {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}

/* ───── Reveal on scroll ───── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================
   INTRO
   ============================================ */
.intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9rem var(--gutter) 6rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 3rem;
  align-items: start;
}
.intro-copy p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  max-width: 60ch;
  margin: 1.8rem 0 0;
  color: rgba(26,31,28,0.78);
}

/* ============================================
   SHOWROOM ANNOUNCEMENT
   ============================================ */
.showroom {
  background: var(--ink);
  color: var(--cream);
  padding: 7rem var(--gutter);
  text-align: center;
}
.showroom-inner {
  max-width: 680px;
  margin: 0 auto;
}
.showroom-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 2.5rem;
}
.showroom-badge::before,
.showroom-badge::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sand);
  opacity: 0.55;
}
.showroom .section-title {
  color: var(--cream);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 2rem;
}
.showroom .section-title em { color: var(--sand); }
.showroom-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.68;
  color: rgba(245,241,232,0.7);
  max-width: 54ch;
  margin: 0 auto 2.75rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%);
}
.services-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
.service {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.service-reverse { direction: rtl; }
.service-reverse > * { direction: ltr; }

.service-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--rule);
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.service:hover .service-img-wrap img { transform: scale(1.04); }

.service-text { padding: 1rem 0; }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.service-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}
.service-text p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(26,31,28,0.7);
  max-width: 36ch;
  margin: 0 0 2rem;
  line-height: 1.5;
}

.link-arrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: gap 0.35s ease, color 0.25s ease;
}
.link-arrow:hover { gap: 1.1rem; color: var(--terracotta); }
.link-arrow span { font-size: 1rem; }

/* ============================================
   FEATURED WORK
   ============================================ */
.featured {
  padding: 8rem 0;
  background: var(--ink);
  color: var(--cream);
}
.featured .section-tag .label { color: rgba(245, 241, 232, 0.6); }
.featured .section-title em { color: var(--sand); }

.featured-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}
.ft {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #000;
}
.ft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter 0.5s ease;
  aspect-ratio: 4 / 5;
}
.ft-tall img { aspect-ratio: 4 / 5; }
.ft-wide {
  grid-column: 1 / -1;
}
.ft-wide img { aspect-ratio: 16 / 7; }
.ft:hover img { transform: scale(1.04); }

.ft figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent);
  color: var(--cream);
}
.ft-loc {
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: 0.02em;
  font-style: italic;
  font-size: 0.95rem;
}

/* ============================================
   WHY US
   ============================================ */
.why {
  padding: 9rem var(--gutter);
  background: var(--forest);
  color: var(--cream);
}
.why-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
.why-tag .numeral { color: var(--sand); }
.why-tag .label { color: rgba(245, 241, 232, 0.6); }
.why .section-title { max-width: 22ch; }
.why .section-title em { color: var(--sand); }

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
  border-top: 1px solid var(--rule-light);
  padding-top: 3rem;
}
.why-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: start;
}
.why-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--sand);
  line-height: 1;
}
.why-list h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
}
.why-list p {
  font-size: 0.95rem;
  color: rgba(245, 241, 232, 0.72);
  margin: 0;
  line-height: 1.55;
}

.why-budget {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sand);
  margin: 1rem 0 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 8rem 0;
  background: var(--cream);
}
.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 9vw;
  gap: 1.25rem;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--rule);
}
.gallery-grid figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.gallery-grid figure:hover img { transform: scale(1.05); }

/* Custom masonry-like layout */
.gallery-grid figure:nth-child(1)  { grid-column: span 2; grid-row: span 3; }
.gallery-grid figure:nth-child(2)  { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(3)  { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(4)  { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(5)  { grid-column: span 2; grid-row: span 3; }
.gallery-grid figure:nth-child(6)  { grid-column: span 3; grid-row: span 3; }
.gallery-grid figure:nth-child(7)  { grid-column: span 3; grid-row: span 3; }
.gallery-grid figure:nth-child(8)  { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(9)  { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(10) { grid-column: span 2; grid-row: span 2; }

/* ============================================
   CLOSING / CONTACT
   ============================================ */
.closing {
  padding: 10rem var(--gutter);
  background: var(--bone);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: "";
  position: absolute;
  top: 6rem; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: var(--terracotta);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}
.closing-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
}
.closing-title em { font-style: italic; font-weight: 400; color: var(--forest); }
.closing-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(26,31,28,0.7);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}
.closing-foot {
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem var(--gutter) 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.foot-col h5 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 1.2rem;
}
.foot-col p {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(245, 241, 232, 0.78);
}
.foot-col a:hover { color: var(--sand); }
.foot-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.foot-brand p:first-of-type {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream);
}
.foot-tag {
  font-size: 0.9rem !important;
  font-style: normal !important;
  color: rgba(245, 241, 232, 0.55) !important;
}
.footer-rule {
  max-width: var(--max);
  margin: 4rem auto 1.5rem;
  height: 1px;
  background: var(--rule-light);
}
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
}

/* ============================================
   MODAL (Account)
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 28, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}
.modal-card {
  position: relative;
  background: var(--cream);
  width: 100%;
  max-width: 440px;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 4px;
  animation: pop 0.4s cubic-bezier(.2,.7,.2,1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 0.9rem; right: 1.1rem;
  font-size: 1.8rem;
  color: var(--ink);
  line-height: 1;
  transition: opacity 0.2s;
}
.modal-close:hover { opacity: 0.6; }
.modal-tabs {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2rem;
}
.tab {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 0 1rem;
  color: rgba(26,31,28,0.4);
  position: relative;
  transition: color 0.2s ease;
}
.tab.active { color: var(--ink); }
.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--forest);
}
.modal-form h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.modal-sub {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(26,31,28,0.6);
  margin: 0 0 2rem;
}
.modal-form label {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
}
.modal-form input {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  transition: border-color 0.25s ease;
}
.modal-form input:focus { border-color: var(--forest); }
.modal-form input::placeholder { color: rgba(26,31,28,0.3); }
.modal-form .btn { margin-top: 1rem; }
.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
}
.btn-google:hover { opacity: 0.92; }
.account-panel label textarea {
  min-height: 100px;
  resize: vertical;
}
.modal-foot {
  font-size: 0.78rem;
  text-align: center;
  margin: 1.5rem 0 0;
  color: var(--moss);
  font-family: var(--serif);
  font-style: italic;
}
.hidden { display: none; }

/* header logout button */
.nav-logout {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
  }
  .nav-inner { grid-template-columns: 1fr auto auto; }

  .section-head, .intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service, .service-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .ft-wide { grid-column: auto; }
  .why-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 18vw;
  }
  .gallery-grid figure:nth-child(n) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(5),
  .gallery-grid figure:nth-child(6),
  .gallery-grid figure:nth-child(7) {
    grid-column: span 4;
    grid-row: span 3;
  }
  .hero-title .ht-2 { padding-left: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 560px) {
  .brand-word { display: none; }
  .account-link {
    padding: 0.45rem 0.85rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }
  .nav { padding: 1rem var(--gutter); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid figure:nth-child(n) {
    grid-column: span 4;
    grid-row: span 3;
  }
}
