/* ============================================================
   7CHARM — MONOCHROME EDITION
   Curated for the seeker. Designed for the soul.
   Black & white architecture · a single Turkish turquoise accent.
   ============================================================ */

:root {
  --ink:        #0d0d0e;   /* near-black */
  --ink-deep:   #070708;
  --paper:      #f7f6f2;   /* warm gallery white */
  --paper-soft: #efede7;
  --grey:       #8b8a86;
  --line-l:     rgba(13, 13, 14, 0.12);   /* hairline on light */
  --line-d:     rgba(247, 246, 242, 0.14); /* hairline on dark */

  /* Turkish turquoise — the one accent */
  --turq:       #14b1b4;
  --turq-soft:  #6fd6d6;
  --turq-deep:  #0c8486;
  /* The logo turquoise — sampled from the official wordmark file */
  --turq-logo:  #77dde7;

  --serif: "Castoro", "Times New Roman", serif;
  --sans:  "Helvetica Neue", "Inter", "Segoe UI", Arial, system-ui, sans-serif;

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0.05, 0.36, 1);

  --edge: clamp(1.25rem, 5vw, 5.5rem);
  --maxw: 1560px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
  line-height: 1.65;
  letter-spacing: 0.01em;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }

::selection { background: var(--turq); color: var(--ink); }

.accent { color: var(--turq); }

/* ---------- Film grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.6s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); } 25% { transform: translate(-3%,2%); }
  50% { transform: translate(2%,-2%); } 75% { transform: translate(-2%,-3%); }
  100% { transform: translate(2%,3%); }
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor-dot { width: 6px; height: 6px; background: var(--turq); }
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(139, 138, 134, 0.7);
  transition: width .4s var(--ease), height .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  mix-blend-mode: difference;
}
.cursor-ring.hover {
  width: 72px; height: 72px;
  border-color: var(--turq);
  background: rgba(20, 177, 180, 0.10);
  mix-blend-mode: normal;
}
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: var(--ink-deep);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.6s ease;
  will-change: transform;
}
.preloader.is-done { transform: translateY(-100%); }
.preloader.is-hidden { display: none; }
.pre-inner { text-align: center; }
.pre-logo {
  width: min(400px, 72vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
.pre-quote {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--grey);
}
.pre-bar {
  width: min(240px, 48vw);
  height: 1px;
  background: var(--line-d);
  margin: 1.8rem auto 0;
  overflow: hidden;
}
.pre-bar span {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: var(--turq);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem var(--edge);
  color: var(--paper);
  background: linear-gradient(rgba(7, 7, 8, 0.6), transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .5s var(--ease), padding .5s var(--ease);
}
.nav.scrolled {
  background: rgba(7, 7, 8, 0.92);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(247, 246, 242, 0.06);
}
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 26px; width: auto; display: block; }
.nav__links {
  display: flex;
  gap: 2.4rem;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.nav__links a { position: relative; padding: 0.4rem 0; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
}
@media (max-width: 900px) { .nav__links { display: none; } }

/* ---------- Layout helpers ---------- */
.section { position: relative; padding: clamp(6rem, 14vh, 12rem) 0; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--edge); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--turq);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--turq);
}

/* ============================================================
   HERO — black, architectural
   ============================================================ */
.hero {
  height: 100svh;
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg canvas { width: 100%; height: 100%; display: block; }
.hero__vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 90% at 50% 42%, transparent 38%, rgba(7,7,8,0.6) 100%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; text-align: center; padding: 0 var(--edge); }
.hero__mark {
  display: flex;
  justify-content: center;
  margin: 0;
}
.hero__logo {
  width: min(860px, 86vw);
  height: auto;
  display: block;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 44px rgba(119, 221, 231, 0.22));
}
.hero__tag {
  margin-top: clamp(1.6rem, 3.4vw, 3rem);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.3vw, 1.75rem);
  color: var(--paper);
  opacity: 0.92;
}
.hero__sub {
  margin-top: 1.2rem;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero__rule {
  width: 56px;
  height: 1px;
  background: var(--turq);
  margin: clamp(1.4rem, 3vw, 2.2rem) auto 0;
}
.hero__scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero__scroll .bar {
  width: 1px; height: 46px;
  background: linear-gradient(var(--turq), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll .bar::after {
  content: "";
  position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--paper);
  animation: scrollPulse 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(-100%); } 100% { transform: translateY(300%); }
}

/* ============================================================
   MARQUEE — typographic ribbon
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink-deep);
}
.marquee__track { display: inline-flex; gap: 3rem; align-items: center; will-change: transform; }
.marquee__track span {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee__track i {
  font-style: normal;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--turq);
  display: inline-block;
}

/* ============================================================
   ABOUT — gallery white
   ============================================================ */
.about {
  background: var(--paper);
  color: var(--ink);
}
.about ::selection { background: var(--ink); color: var(--paper); }
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}
.about__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 1.6rem 0 1.8rem;
}
.about__title em { font-style: italic; color: var(--turq-deep); }
.about__body p { color: #3a3936; font-size: clamp(1rem, 1.3vw, 1.16rem); max-width: 54ch; }
.about__body p + p { margin-top: 1.3rem; }
.about__body p strong { color: var(--ink); font-weight: 600; }
.about__body .drop::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  float: left;
  line-height: 0.72;
  padding: 0.08em 0.14em 0 0;
  color: var(--turq-deep);
}
.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
  border-radius: 2px;
}
.about__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02) brightness(0.6);
  opacity: 0.55;
}
.about__visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.about__visual .plaque {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center;
  z-index: 2;
}
.about__visual .plaque .seven {
  width: clamp(90px, 24vw, 170px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(119, 221, 231, 0.3));
}
.about__visual .plaque .cap {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { aspect-ratio: 3/4; max-height: 60vh; }
}

/* ============================================================
   COLLECTION — three monochrome panels
   ============================================================ */
.collection {
  background: var(--paper);
  color: var(--ink);
  padding-top: 0;
}
.collection ::selection { background: var(--ink); color: var(--paper); }
.collection__head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.collection__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 4rem);
  margin-top: 1.2rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.collection__head h2 em { font-style: italic; color: var(--turq-deep); }
.collection__head p { color: var(--grey); max-width: 52ch; margin: 1.2rem auto 0; }
.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.card {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  min-height: clamp(340px, 40vw, 500px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 2px;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--turq);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
  z-index: 3;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px -30px rgba(13,13,14,0.5); }
.card:hover::before { transform: scaleX(1); }
.card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.5;
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
  will-change: transform;
}
.card:hover .card__photo { opacity: 0.72; transform: scale(1.05); filter: grayscale(0.75) contrast(1.05); }
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,14,0.25) 0%, rgba(13,13,14,0.05) 40%, rgba(13,13,14,0.88) 82%);
  z-index: 1;
  pointer-events: none;
}
.card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--turq-logo);
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 12px rgba(13,13,14,0.8);
}
.card__text { position: relative; z-index: 2; margin-top: auto; }
.card__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.05;
}
.card__desc {
  color: #d4d3ce;
  font-size: 0.98rem;
  margin-top: 1rem;
  max-width: 34ch;
  /* Reserve three lines so all card titles sit on the same baseline */
  min-height: calc(3 * 1.65em);
}
@media (max-width: 900px) {
  .card__desc { min-height: 0; }
}
@media (max-width: 900px) { .collection__grid { grid-template-columns: 1fr; } }

/* ============================================================
   SOUL — black interlude
   ============================================================ */
.soul { background: var(--ink); overflow: hidden; }
.soul__inner { text-align: center; max-width: 62rem; margin: 0 auto; }
.soul__big {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3.8rem);
  line-height: 1.2;
  margin-top: 1.8rem;
}
.soul__big .w { display: inline-block; will-change: transform, opacity; }
.soul__big em { font-style: italic; color: var(--turq); }
.soul__note {
  margin-top: 2.4rem;
  color: var(--grey);
  font-size: 0.98rem;
  max-width: 46ch;
  margin-inline: auto;
}

/* ============================================================
   PHOTO BAND — full-bleed interlude
   ============================================================ */
.band {
  position: relative;
  height: clamp(340px, 62vh, 640px);
  overflow: hidden;
  background: var(--ink);
}
.band img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(0.55);
  will-change: transform;
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 90% at 50% 50%, transparent 30%, rgba(13,13,14,0.55) 100%);
}
.band__inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  text-align: center;
  padding: 0 var(--edge);
}
.band__inner p {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  color: var(--paper);
  line-height: 1.2;
  text-shadow: 0 2px 30px rgba(13,13,14,0.6);
}
.band__inner em { font-style: italic; color: var(--turq-logo); }

/* ============================================================
   VISIT — gallery white
   ============================================================ */
.visit { background: var(--paper); color: var(--ink); }
.visit ::selection { background: var(--ink); color: var(--paper); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.visit__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  /* Clear air between the eyebrow above and this title */
  margin-top: clamp(1.2rem, 2.6vw, 2rem);
}
.visit__title em { font-style: italic; color: var(--turq-deep); }
.visit__addr { margin-top: 2.2rem; font-size: 1.05rem; color: #3a3936; line-height: 2; }
.visit__addr .addr-link {
  display: block;
  color: inherit;
  transition: color .4s var(--ease);
  width: fit-content;
}
.visit__addr .addr-link:hover { color: var(--turq-deep); }
.visit__cta { margin-top: 0.6rem; }
.visit__map-link { position: absolute; inset: 0; z-index: 2; }
.visit__addr .k {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--turq-deep);
  margin-top: 1.4rem;
}
.visit__map {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 2px;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(247,246,242,0.06) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(247,246,242,0.06) 38px 39px),
    var(--ink);
}
.visit__map .avenue {
  position: absolute;
  top: 0; bottom: 0;
  left: 52%;
  width: 2px;
  background: var(--turq);
  opacity: 0.55;
}
.visit__map .cross {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(247,246,242,0.14);
}
.visit__map .cross.c81 { top: 62%; }
.visit__map .cross.c82 { top: 30%; }
.visit__map .cross span {
  position: absolute;
  right: 1rem; top: -1.6rem;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}
.visit__map .pin {
  position: absolute;
  top: 46%; left: 52%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--paper);
}
.visit__map .pin .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--turq);
  margin: 0 auto;
  animation: ping 2.4s var(--ease-in-out) infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(20,177,180,0.55); }
  100% { box-shadow: 0 0 0 34px rgba(20,177,180,0); }
}
.visit__map .pin span {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  margin-top: 0.8rem;
  font-size: 1.1rem;
}
.visit__map .street {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
@media (max-width: 900px) { .visit__grid { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1.1rem 2.1rem;
  border: 1px solid var(--turq);
  border-radius: 40px;
  color: inherit;
  position: relative;
  overflow: hidden;
  margin-top: 2.4rem;
  transition: color .5s var(--ease);
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--turq);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: translateY(0); }

/* ============================================================
   FOOTER — black
   ============================================================ */
.footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--line-d);
  padding: clamp(4rem, 9vw, 7rem) 0 2.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line-d);
}
.footer__mark img { width: clamp(180px, 22vw, 270px); height: auto; display: block; }
.footer__tag { font-family: var(--serif); font-style: italic; color: var(--grey); margin-top: 1rem; }
.footer__col h4 {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--turq-logo);
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.footer__col a, .footer__col p {
  display: block;
  color: #b9b8b3;
  font-size: 0.96rem;
  padding: 0.35rem 0;
  transition: color .4s var(--ease), transform .4s var(--ease);
}
.footer__col a:hover { color: var(--turq-soft); transform: translateX(4px); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookiebar {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translate(-50%, 0);
  z-index: 9200;
  width: min(680px, calc(100vw - 2rem));
  background: var(--ink-deep);
  color: var(--paper);
  border: 1px solid var(--line-d);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.cookiebar.is-hidden {
  transform: translate(-50%, 140%);
  opacity: 0;
  pointer-events: none;
}
.cookiebar p {
  flex: 1 1 280px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #b9b8b3;
}
.cookiebar p a { color: var(--turq-soft); text-decoration: underline; text-underline-offset: 3px; }
.cookiebar__actions { display: flex; gap: 0.6rem; }
.cookiebar button {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 1.3rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.cookiebar .ck-accept {
  background: var(--turq);
  color: var(--ink);
  border: 1px solid var(--turq);
}
.cookiebar .ck-accept:hover { background: var(--turq-soft); border-color: var(--turq-soft); }
.cookiebar .ck-decline {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line-d);
}
.cookiebar .ck-decline:hover { border-color: var(--paper); }

/* ============================================================
   LEGAL PAGES (privacy.html / terms.html)
   ============================================================ */
.legal-page { background: var(--paper); color: var(--ink); min-height: 100vh; }
.legal-page ::selection { background: var(--ink); color: var(--paper); }
.legal {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(7rem, 16vh, 11rem) var(--edge) clamp(4rem, 8vw, 6rem);
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 1.4rem 0 0.6rem;
}
.legal .legal-meta { color: var(--grey); font-size: 0.9rem; margin-bottom: 2.6rem; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 2.4rem 0 0.8rem;
}
.legal p, .legal li { color: #3a3936; font-size: 1rem; }
.legal p + p { margin-top: 0.9rem; }
.legal ul { padding-left: 1.2rem; margin: 0.8rem 0; }
.legal li { margin: 0.4rem 0; }
.legal a { color: var(--turq-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal .backlink {
  display: inline-block;
  margin-top: 3rem;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--turq);
  border-radius: 40px;
  padding: 0.9rem 1.8rem;
  color: var(--ink);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.legal .backlink:hover { background: var(--turq); color: var(--ink); }

/* ============================================================
   RESPONSIVE REFINEMENTS — tablet & phone typography/spacing
   ============================================================ */
@media (max-width: 1024px) and (min-width: 761px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section { padding: clamp(4.5rem, 10vh, 7rem) 0; }
  .about__title, .visit__title { line-height: 1.1; }
  .visit__map { max-width: 520px; }
}

@media (max-width: 480px) {
  /* Tracking that reads elegantly at large sizes gets cramped on
     small screens — ease it off so lines break cleanly. */
  .hero__logo { width: 88vw; }
  .hero__tag { font-size: 1.05rem; margin-top: 1.6rem; }
  .hero__sub { font-size: 10px; letter-spacing: 0.2em; }
  .eyebrow { font-size: 10px; letter-spacing: 0.24em; }
  .eyebrow::before { width: 26px; }
  .nav { padding: 1.1rem var(--edge); }
  .nav__brand img { height: 22px; }
  .nav__cta { padding: 0.6rem 1.1rem; font-size: 10px; letter-spacing: 0.16em; }
  .marquee { padding: 1.1rem 0; }
  .marquee__track { gap: 1.8rem; }
  .marquee__track span { gap: 1.8rem; font-size: 1.25rem; }
  .about__body p, .intro__body p { font-size: 1rem; }
  .card { min-height: 340px; padding: 1.5rem; }
  .band { height: 320px; }
  .band__inner p { font-size: 1.55rem; }
  .soul__big { font-size: 1.7rem; }
  .visit__addr { font-size: 0.98rem; line-height: 1.9; }
  .btn { padding: 0.95rem 1.6rem; font-size: 10px; letter-spacing: 0.2em; }
  .footer__mark img { width: 190px; }
  .footer__bottom { font-size: 9px; letter-spacing: 0.14em; }
  .cookiebar { bottom: 0.75rem; padding: 1rem 1.1rem; gap: 0.8rem; }
  .cookiebar p { font-size: 0.8rem; }
  .legal { padding-top: 6.5rem; }
  .legal h1 { font-size: 2rem; }
}

/* Long unbroken strings (emails, URLs) must never cause sideways scroll */
.visit__addr, .legal p, .legal li, .footer__col a, .footer__col p, .cookiebar p {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
