/* Whitby Tile Centre — modern editorial design system */

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

:root {
  --black: #0f0f0f;
  --charcoal: #2a2a2a;
  --muted: #737373;
  --muted-light: #a3a3a3;
  --line: #e8e4de;
  --cream: #f4f1ec;
  --cream-dark: #ebe6df;
  --white: #ffffff;
  --bronze: #a38666;
  --bronze-light: #c4a882;
  --warn-bg: #fef9ec;
  --warn-border: #f0dfc0;
  --warn-text: #6b4f1d;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --wrap: 1280px;
  --wrap-narrow: 720px;
  --radius: 2px;
  --ease: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --demo-banner-height: 2.25rem;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 7.5rem; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.skip {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}
.skip:focus { top: 3rem; }

.demo-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--warn-bg);
  border-bottom: 1px solid var(--warn-border);
  color: var(--warn-text);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding: 0.5rem 1rem;
  text-align: center;
}
.demo-notice strong { font-weight: 600; }

body.has-demo-banner {
  padding-top: var(--demo-banner-height);
}
body.has-demo-banner .header {
  top: var(--demo-banner-height);
}

/* Typography */
.eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--black);
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
  margin-top: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  transition: gap var(--ease), color var(--ease);
}
.link-arrow::after {
  content: '→';
  transition: transform var(--ease);
}
.link-arrow:hover { color: var(--bronze); gap: 0.75rem; }
.link-arrow:hover::after { transform: translateX(3px); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--dark:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); color: var(--white); }
.btn--light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--light:hover { background: var(--cream); border-color: var(--cream); }
.btn--ghost { background: transparent; color: var(--black); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--black); }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.6875rem; }
.btn--block { width: 100%; }

/* Top bar */
.top-bar {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}
.top-bar span { opacity: 0.5; margin: 0 0.5rem; }
@media (min-width: 768px) {
  .top-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  .top-bar span { display: none; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background var(--ease), box-shadow var(--ease), color var(--ease);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--wrap);
  margin: 0 auto;
}

.header--overlay:not(.is-scrolled) {
  color: var(--white);
}
.header--overlay:not(.is-scrolled) .brand__name { color: var(--white); }
.header--overlay:not(.is-scrolled) .brand__sub { color: rgba(255,255,255,0.55); }
.header--overlay:not(.is-scrolled) .menu-btn span { background: var(--white); }
.header--overlay:not(.is-scrolled) .nav a { color: rgba(255,255,255,0.75); }
.header--overlay:not(.is-scrolled) .nav a:hover,
.header--overlay:not(.is-scrolled) .nav a.is-active { color: var(--white); }
.header--overlay:not(.is-scrolled) .header__phone { color: rgba(255,255,255,0.85); }

.header.is-scrolled,
.header:not(.header--overlay) {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--black);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand__mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.01em;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 0.2rem;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
}
.menu-btn span {
  display: block;
  height: 1px;
  background: var(--black);
  transition: transform var(--ease), opacity var(--ease);
}
body.nav-open .menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--white);
  padding: 5rem 2rem 2rem;
  z-index: -1;
}
.nav.is-open { display: flex; align-items: center; justify-content: center; }
.nav ul { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; }
.nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--muted);
  transition: color var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--black); }

.header__phone {
  display: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header__phone:hover { color: var(--bronze); }
.header__cta { display: none; }

@media (min-width: 960px) {
  .menu-btn { display: none; }
  .nav {
    display: block !important;
    position: static;
    background: none;
    padding: 0;
    z-index: auto;
    margin-left: auto;
  }
  .nav ul {
    flex-direction: row;
    gap: 0.25rem;
    text-align: left;
  }
  .nav a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 0.875rem;
    color: var(--muted);
  }
  .nav a:hover, .nav a.is-active { color: var(--black); }
  .header__phone { display: block; }
  .header__cta { display: inline-flex; flex-shrink: 0; }
}

/* Hero — full bleed editorial */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(15,15,15,0.92) 0%,
      rgba(15,15,15,0.65) 50%,
      rgba(15,15,15,0.45) 100%
    ),
    rgba(15,15,15,0.35);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(6rem, 14vw, 10rem) 0 clamp(3rem, 8vw, 5rem);
}
.hero__content .eyebrow { color: var(--bronze-light); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}
.hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.78);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}
.hero__actions .link-arrow { color: rgba(255,255,255,0.85); }
.hero__actions .link-arrow:hover { color: var(--white); }

/* Home — hero + marquee visible above the fold */
.page-home .hero {
  min-height: calc(100svh - var(--demo-banner-height) - 2.25rem - 3.25rem);
}
@media (max-width: 767px) {
  .page-home .hero {
    min-height: calc(100svh - var(--demo-banner-height) - 3.25rem - 3.25rem);
  }
}
.page-home .hero__content {
  padding: clamp(4.5rem, 9vw, 6.5rem) 0 clamp(1.75rem, 4vw, 2.5rem);
}
.page-home .hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
}
.page-home .hero__lead {
  margin-bottom: 1.75rem;
}

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.125rem 0;
  overflow: hidden;
  background: var(--cream);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  flex-shrink: 0;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee__track span {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__track span::before { content: '◆'; margin-right: 3rem; color: var(--bronze); font-size: 0.5rem; vertical-align: middle; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: clamp(4rem, 10vw, 7rem) 0; }
.section--cream { background: var(--cream); }
.section__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__head--center { text-align: center; }
.section__head--center .section-lead { margin-inline: auto; }

/* Collection cards — editorial portrait */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}
@media (min-width: 640px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .collection-grid { grid-template-columns: repeat(4, 1fr); }
}

.collection-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--black);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-out), opacity var(--ease);
  opacity: 0.92;
}
.collection-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}
.collection-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  background: linear-gradient(to top, rgba(15,15,15,0.75) 0%, transparent 55%);
  color: var(--white);
  transition: background var(--ease);
}
.collection-card:hover .collection-card__overlay {
  background: linear-gradient(to top, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.1) 60%);
}
.collection-card__overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.collection-card__overlay p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.collection-card__overlay .link-arrow {
  color: rgba(255,255,255,0.7);
  font-size: 0.6875rem;
}
.collection-card:hover .collection-card__overlay .link-arrow { color: var(--white); }

/* Editorial split */
.editorial {
  display: grid;
  gap: 0;
  align-items: stretch;
}
@media (min-width: 960px) {
  .editorial { grid-template-columns: 1fr 1fr; }
}
.editorial__media {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.editorial__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--white);
}
.editorial__body p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.editorial__body p:last-of-type { margin-bottom: 2rem; }
.editorial__list {
  display: grid;
  gap: 0.875rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.editorial__list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--charcoal);
}
.editorial__list li::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
  margin-top: 0.6em;
}

/* Room cards */
.rooms {
  display: grid;
  gap: 1px;
  background: var(--line);
}
@media (min-width: 768px) {
  .rooms { grid-template-columns: repeat(3, 1fr); }
}
.room-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: block;
}
.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-out);
}
.room-card:hover img { transform: scale(1.05); }
.room-card__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(15,15,15,0.7) 0%, transparent 50%);
  color: var(--white);
}
.room-card__label h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.room-card__label p { font-size: 0.8125rem; color: rgba(255,255,255,0.65); }

/* Mosaic grid */
.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
@media (min-width: 768px) {
  .mosaic { grid-template-columns: repeat(12, 1fr); }
}
.mosaic__item {
  position: relative;
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 1;
}
.mosaic__item--wide { aspect-ratio: auto; }
@media (min-width: 768px) {
  .mosaic__item:nth-child(1) { grid-column: span 7; grid-row: span 2; aspect-ratio: auto; min-height: 480px; }
  .mosaic__item:nth-child(2) { grid-column: span 5; aspect-ratio: auto; min-height: 240px; }
  .mosaic__item:nth-child(3) { grid-column: span 5; aspect-ratio: auto; min-height: 240px; }
  .mosaic__item:nth-child(4) { grid-column: span 4; aspect-ratio: auto; min-height: 320px; }
  .mosaic__item:nth-child(5) { grid-column: span 4; aspect-ratio: auto; min-height: 320px; }
  .mosaic__item:nth-child(6) { grid-column: span 4; aspect-ratio: auto; min-height: 320px; }
}
.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-out);
  min-height: 100%;
}
.mosaic__item:hover img { transform: scale(1.04); }
.mosaic__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(15,15,15,0.8), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.125rem;
  opacity: 0;
  transition: opacity var(--ease);
}
.mosaic__item:hover .mosaic__caption { opacity: 1; }

/* Visit CTA */
.visit {
  display: grid;
  gap: 0;
  background: var(--black);
  color: var(--white);
}
@media (min-width: 960px) {
  .visit { grid-template-columns: 1fr 1fr; }
}
.visit__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.visit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.visit__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem);
}
.visit__body h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.visit__body > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  max-width: 40ch;
  line-height: 1.75;
}
.visit__hours {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.visit__hours div {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  gap: 1rem;
}
.visit__hours dt { color: rgba(255,255,255,0.5); font-weight: 400; }
.visit__hours dd { color: rgba(255,255,255,0.9); }
.visit__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Page hero — inner pages */
.page-hero {
  padding: clamp(7rem, 16vw, 10rem) 0 clamp(3rem, 6vw, 4rem);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero .breadcrumb {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1.25rem;
}
.page-hero .breadcrumb a { color: var(--bronze); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
}
.page-hero p a { color: var(--bronze); text-decoration: underline; text-underline-offset: 3px; }

/* Product sections */
.product-block {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}
.product-block:last-child { border-bottom: none; }
.product-block__head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .product-block__head { grid-template-columns: 1fr 1fr; align-items: end; }
}
.product-block__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.02em;
}
.product-block__head p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
@media (min-width: 768px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}
.photo-grid__item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-dark);
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-out);
}
.photo-grid__item:hover img { transform: scale(1.04); }
.photo-grid__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to top, rgba(15,15,15,0.75), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}
.photo-grid__item:hover figcaption { opacity: 1; }

/* Inspiration grid */
.inspire-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}
@media (min-width: 640px) {
  .inspire-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .inspire-grid { grid-template-columns: repeat(3, 1fr); }
}
.inspire-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.inspire-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform var(--ease-out), opacity var(--ease);
  opacity: 0.9;
}
.inspire-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.inspire-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
  background: var(--white);
}
.inspire-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.inspire-card__body p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.note-banner {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  text-align: center;
}
.note-banner p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
.note-banner a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color var(--ease), border-color var(--ease);
}
.note-banner a:hover { color: var(--bronze); border-color: var(--bronze); }

/* Contact */
.contact-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 960px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
  .contact-layout .map-wrap { grid-column: 1 / -1; }
}
.contact-info h2, .form-panel h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.contact-row {
  display: flex;
  gap: 1rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  width: 80px;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.contact-row__value {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-row__value a:hover { color: var(--bronze); }

.hours-block {
  margin: 2rem 0;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hours-block h3 {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1rem;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.hours-table th, .hours-table td {
  padding: 0.5rem 0;
  text-align: left;
  font-weight: 400;
}
.hours-table th { color: var(--muted); width: 45%; }
.hours-table td { color: var(--charcoal); }

.form-panel {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
}
.form-demo-note {
  font-size: 0.75rem;
  color: var(--warn-text);
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  padding: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}
.form-panel > p { color: var(--muted); font-size: 0.9375rem; margin-bottom: 1.5rem; line-height: 1.65; }
.field { margin-bottom: 1.125rem; }
.field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.875rem 1rem;
  font: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  transition: border-color var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--black);
}
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.875rem;
  background: var(--cream-dark);
  font-size: 0.875rem;
  text-align: center;
  color: var(--charcoal);
}
.form-success.is-visible { display: block; }

.map-wrap {
  aspect-ratio: 21/8;
  overflow: hidden;
  background: var(--cream-dark);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.contact-note { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

/* Footer */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}
.footer__brand .brand__name { font-size: 1.5rem; }
.footer__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 1rem 0 1.25rem;
  max-width: 32ch;
}
.footer h4 {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: 0.625rem; }
.footer ul a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--ease);
}
.footer ul a:hover { color: var(--black); }
.footer__links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color var(--ease), border-color var(--ease);
}
.footer__links a:hover { color: var(--bronze); border-color: var(--bronze); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-light);
}
.footer__demo { color: var(--muted); }

/* Mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.mobile-bar a:first-child { background: var(--black); color: var(--white); }
body.has-mobile-bar { padding-bottom: 52px; }
@media (min-width: 960px) {
  .mobile-bar { display: none; }
  body.has-mobile-bar { padding-bottom: 0; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

.section-cta { margin-top: 2.5rem; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .collection-card:hover img,
  .room-card:hover img, .mosaic__item:hover img,
  .photo-grid__item:hover img, .inspire-card:hover img { transform: none; }
  .marquee__track { animation: none; }
}
