/* =========================================================
   Arda Uymaz Kuaför — Editorial Barber Blog
   Palet: ılık fildişi, adaçayı, kil, mürekkep
   ========================================================= */

:root {
  --bg: #f6f3ee;
  --bg-alt: #efebe3;
  --surface: #fcfaf6;
  --ink: #2b2926;
  --ink-soft: #5c574f;
  --muted: #8a847a;
  --line: #e4ded4;
  --line-strong: #d4cdc0;
  --sage: #7d8b76;
  --sage-deep: #4f5b4c;
  --sage-soft: #dfe6d8;
  --sand: #d4c4b0;
  --clay: #c0896a;
  --clay-deep: #a56d50;
  --gold: #b89a6a;
  --white: #fffdf9;
  --shadow: 0 18px 50px rgba(43, 41, 38, 0.08);
  --shadow-soft: 0 10px 30px rgba(43, 41, 38, 0.06);
  --radius: 18px;
  --radius-sm: 10px;
  --header-h: 108px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

h1,
h2,
h3,
h4,
blockquote {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--clay);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-heading h2,
.display {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.section-heading h2 em,
.display em,
h1 em {
  font-style: italic;
  color: var(--sage-deep);
}

.lede {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 52px;
  padding: 0.85rem 1.15rem 0.85rem 1.3rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn span {
  font-size: 1.05rem;
  font-weight: 400;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--sage-soft);
}

.btn-outline {
  border: 1px solid var(--ink);
  background: transparent;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.2rem;
}

.text-link:hover {
  color: var(--clay-deep);
  border-color: var(--clay);
}

/* ---------- Announcement / Header ---------- */
.announcement {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--sage-deep);
  color: #f4f1ea;
  padding: 0.65rem var(--gutter);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.announcement a {
  font-weight: 600;
  color: #f3e2d4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--gutter);
  background: rgba(246, 243, 238, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(252, 250, 246, 0.94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  display: block;
  height: 96px;
  width: auto;
}

.site-header .brand-logo {
  filter: drop-shadow(0 1px 1px rgba(43, 41, 38, 0.12));
}

.site-footer .brand-logo {
  height: 118px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  position: relative;
  font-size: 0.84rem;
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.2rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 132px);
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(4rem, 7vw, 6.5rem);
}

.hero h1 {
  font-size: clamp(3.1rem, 7.2vw, 6.4rem);
  margin: 0.4rem 0 1.3rem;
}

.hero-text {
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.8rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta .line {
  width: 42px;
  height: 1px;
  background: var(--line-strong);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  max-height: min(78vh, 720px);
  object-fit: cover;
  object-position: center 42%;
  border-radius: 28px 8px 28px 8px;
  filter: saturate(0.92) contrast(1.04);
}

.image-note {
  position: absolute;
  left: 12px;
  bottom: 18px;
  max-width: calc(100% - 24px);
  display: flex;
  gap: 0.9rem;
  background: var(--surface);
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.image-note strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.image-note span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.hero-stamp {
  position: absolute;
  right: 12px;
  top: 22px;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(184, 154, 106, 0.45);
  border-radius: 50%;
  background: rgba(18, 16, 14, 0.78);
  box-shadow: 0 10px 28px rgba(18, 16, 14, 0.28);
}

.hero-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.stat {
  padding: 1.6rem var(--gutter);
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.stat span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Intro ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.intro-copy p + p {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.feature-band {
  position: relative;
  isolation: isolate;
  min-height: min(72vh, 680px);
  overflow: hidden;
}

.feature-band img {
  width: 100%;
  height: min(72vh, 680px);
  object-fit: cover;
  object-position: 42% 62%;
  display: block;
  filter: saturate(0.94) contrast(1.05);
}

.feature-band-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(2rem, 6vw, 4.2rem) var(--gutter) clamp(2.2rem, 5vw, 3.4rem);
  background: linear-gradient(180deg, transparent, rgba(27, 25, 22, 0.62) 55%, rgba(27, 25, 22, 0.78));
  color: #f6f3ee;
}

.feature-band-copy .eyebrow {
  color: #e8c9b0;
}

.feature-band-copy .eyebrow::before {
  background: #e8c9b0;
}

.feature-band-copy h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  max-width: 14ch;
  margin-bottom: 0.7rem;
}

.feature-band-copy h2 em {
  color: #f3e2d4;
}

.feature-band-copy p:last-child {
  max-width: 36ch;
  color: rgba(246, 243, 238, 0.86);
}

.feature-band-logo {
  position: absolute;
  top: 1.4rem;
  right: var(--gutter);
  width: 148px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.intro-figure {
  position: relative;
}

.intro-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: var(--radius);
}

.intro-badge {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  background: var(--surface);
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  max-width: 16rem;
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card .num {
  font-family: var(--serif);
  color: var(--clay);
  font-size: 1.15rem;
}

.service-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-card strong {
  font-size: 0.95rem;
  white-space: nowrap;
}

.service-list-page .service-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list-page .service-row img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  height: auto;
  min-height: 0;
  background: #d8d2c6;
}

.gallery-item img,
.gallery-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
  transition: transform 0.8s var(--ease);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.06);
}

.gallery-grid > .gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0.8rem 0.8rem 0.8rem;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-page-grid .gallery-item {
  height: auto;
  aspect-ratio: 3 / 4;
}

.gallery-item.is-hidden,
.article-card.is-hidden,
.is-hidden {
  display: none;
}

code {
  font-size: 0.86em;
  background: var(--sage-soft);
  padding: 0.1em 0.4em;
  border-radius: 6px;
}

/* ---------- Blog ---------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.filter {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter.active,
.filter:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.article-card.is-hidden {
  display: none;
}

.article-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  object-fit: cover;
}

.article-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.article-tag {
  color: var(--clay);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 1.55rem;
}

.article-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.article-card .text-link {
  margin-top: auto;
}

/* ---------- Quote ---------- */
.quote-band {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.quote-band .mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--clay);
}

.quote-band blockquote {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 0.6rem 0 1.6rem;
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  font-size: 0.75rem;
  font-weight: 600;
}

.quote-author small {
  display: block;
  color: var(--muted);
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.process-card {
  padding: 1.6rem;
  border-top: 1px solid var(--ink);
}

.process-card span {
  color: var(--clay);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.process-card h3 {
  font-size: 1.7rem;
  margin: 0.7rem 0;
}

.process-card p {
  color: var(--ink-soft);
}

/* ---------- Forms / Contact ---------- */
.booking,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-center {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.contact-center .eyebrow {
  justify-content: center;
}

.contact-center .lede {
  margin: 0 auto 1.8rem;
}

.contact-center .info-list {
  text-align: center;
  justify-items: center;
}

.contact-center .info-list a,
.contact-center .info-list strong {
  display: block;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 1.6rem;
}

.contact-center .map-embed {
  width: 100%;
  text-align: left;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.25s var(--ease);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  opacity: 0;
  transition: 0.4s var(--ease);
  z-index: 80;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---------- Page hero ---------- */
.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter) 3rem;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 14ch;
}

.page-hero.is-center {
  text-align: center;
}

.page-hero.is-center .breadcrumb,
.page-hero.is-center .eyebrow {
  justify-content: center;
}

.page-hero.is-center h1 {
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
}

.breadcrumb a:hover {
  color: var(--clay-deep);
}

/* ---------- Article ---------- */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: 3rem;
  padding-bottom: 5rem;
}

.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.5rem 0 2rem;
}

.prose {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.prose h2 {
  font-size: 2rem;
  color: var(--ink);
  margin: 2rem 0 0.8rem;
}

.prose p + p {
  margin-top: 1rem;
}

.prose ul {
  margin: 1rem 0 1.4rem 1.1rem;
  list-style: disc;
}

.prose li {
  margin-bottom: 0.4rem;
}

.article-meta {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.aside-card {
  position: sticky;
  top: 110px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.aside-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.aside-card a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.aside-card .btn {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.2rem;
  border-bottom: 0;
  padding: 0.85rem 1.3rem;
  font-size: 0.78rem;
}

.invite-card {
  text-align: center;
}

/* ---------- Contact extras ---------- */
.info-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.info-list div span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-list a,
.info-list strong {
  font-size: 1.15rem;
}

.map-embed {
  width: 100%;
  margin-top: 1.8rem;
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.map-full {
  width: 100%;
  margin: 3rem 0 0;
  border: 0;
  border-radius: 0;
}

.map-full iframe {
  width: 100%;
  height: min(62vh, 560px);
  min-height: 420px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  gap: 0.7rem;
}

.btn-whatsapp img {
  width: 18px;
  height: 18px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.icon-link img {
  width: 16px;
  height: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #2b2926;
  color: #ece7de;
  padding: 4rem var(--gutter) 1.6rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .brand-logo {
  height: 118px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #c8c2b6;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #d8d2c6;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #f3e2d4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  color: #9e988d;
  font-size: 0.8rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.15s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero,
  .intro-grid,
  .booking,
  .contact-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-height: min(68vh, 620px);
  }

  .stats,
  .article-grid,
  .process-grid,
  .footer-top,
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid > .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }

  .hero-stamp {
    right: 12px;
    left: auto;
  }

  .image-note {
    left: 12px;
    right: auto;
  }

  .aside-card {
    position: static;
  }
}

@media (max-width: 800px) {
  .announcement {
    font-size: 0.64rem;
    padding: 0.6rem 1.1rem;
  }

  .site-header {
    height: 92px;
    padding: 0 1.1rem;
  }

  .brand-logo {
    height: 78px;
  }

  .hero-stamp {
    width: 96px;
    height: 96px;
    right: 10px;
    top: 14px;
  }

  .feature-band-logo {
    width: 110px;
    top: 1rem;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header.menu-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 92px 0 auto;
    background: var(--surface);
    padding: 1.4rem 1.2rem 1.8rem;
    border-bottom: 1px solid var(--line);
    gap: 1.1rem;
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    padding: 2.2rem 1.1rem 3.5rem;
    min-height: auto;
  }

  .hero-image {
    aspect-ratio: 4 / 5;
    max-height: 520px;
  }

  .feature-band,
  .feature-band img {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .section {
    padding: 3.6rem 0;
  }

  .section-heading,
  .hero-actions,
  .footer-top,
  .footer-bottom,
  .service-list-page .service-row {
    display: block;
  }

  .stats,
  .service-grid,
  .article-grid,
  .process-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .gallery-grid > .gallery-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 1.1rem;
  }

  .gallery-grid > .gallery-item:first-child,
  .gallery-item,
  .gallery-page-grid .gallery-item {
    height: auto;
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }

  .intro-figure img,
  .article-hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .hero-visual,
  .hero-image {
    min-height: 0;
  }

  .service-list-page .service-row img {
    width: 100%;
    height: 180px;
    margin-bottom: 0.8rem;
  }

  .service-list-page .service-row strong {
    display: block;
    margin-top: 0.6rem;
  }

  .footer-col {
    margin-bottom: 1.4rem;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 16, 14, 0.92);
  padding: 4.5rem 1rem 3.2rem;
  overscroll-behavior: contain;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-stage {
  margin: 0;
  width: min(920px, 100%);
  height: min(78vh, 820px);
  display: grid;
  place-items: center;
}

.lightbox-stage img,
.lightbox-stage video {
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-stage video {
  display: none;
}

.lightbox.is-video .lightbox-stage img {
  display: none;
}

.lightbox.is-video .lightbox-stage video {
  display: block;
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  margin: 0;
  color: #f4efe6;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(252, 250, 246, 0.12);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 2;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-nav.prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(252, 250, 246, 0.24);
}

@media (max-width: 800px) {
  .lightbox {
    padding: 4.2rem 0.6rem 3rem;
  }

  .lightbox-nav.prev {
    left: 0.45rem;
  }

  .lightbox-nav.next {
    right: 0.45rem;
  }

  .lightbox-stage,
  .lightbox-stage img,
  .lightbox-stage video {
    max-height: 70vh;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
