/*
Theme Name:  Artsy Homes
Theme URI:   https://artsy-homes.ro
Author:      Artsy Homes
Author URI:  https://artsy-homes.ro
Description: A custom WordPress theme for Artsy Homes, a short-term rental property in Târgu Mureș. Built from scratch, inspired by TwentySixteen.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: artsy-homes
Tags:        custom-theme, airbnb, rental, one-column, two-columns, right-sidebar
*/


/* ─── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=Playfair+Display:ital@1&display=swap');

/* ─── Design tokens ─────────────────────────────────────────────────────────── */
:root {
  /* Earthy palette */
  --c-cream:      #f5f0e8;
  --c-parchment:  #ede5d4;
  --c-sand:       #d4c4a8;
  --c-clay:       #b08d6a;
  --c-terracotta: #9e5a38;
  --c-bark:       #5a3e2b;
  --c-charcoal:   #2c2520;
  --c-ink:        #1a1510;
  --c-sage:       #7a8c6e;
  --c-moss:       #4a5c3e;
  --c-white:      #fdfaf5;

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-italic:   'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

/* ─── Base reset for this page ──────────────────────────────────────────────── */
.home-page-area,
.home-page-area * {
  box-sizing: border-box;
}

.home-page-area {
  background: var(--c-cream);
  color: var(--c-charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Remove default WP margins on home page */
.home-page-area .site-main {
  margin: 0;
  padding: 0;
}

/* ─── Shared typography ─────────────────────────────────────────────────────── */
.ah-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: 0.75rem;
}

.ah-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--c-ink);
  margin: 0 0 1.5rem 0;
}

.ah-section-title em {
  font-style: italic;
  color: var(--c-terracotta);
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.ah-btn {
  display: inline-block;
  padding: 0.85em 2.2em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
}

.ah-btn--primary {
  background: var(--c-terracotta);
  color: var(--c-white);
  border: 1px solid var(--c-terracotta);
}

.ah-btn--primary:hover {
  background: var(--c-bark);
  border-color: var(--c-bark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 62, 43, 0.25);
}

.ah-btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.5);
}

.ah-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--c-white);
}

.ah-btn--large {
  padding: 1.1em 3em;
  font-size: 0.95rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────────────────────── */
.ah-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ah-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ah-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease-smooth) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.ah-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 21, 16, 0.65) 0%,
    rgba(26, 21, 16, 0.35) 60%,
    rgba(26, 21, 16, 0.55) 100%
  );
}

.ah-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--space-lg) var(--space-lg);
  animation: fadeUp 1s 0.3s var(--ease-smooth) both;
}

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

.ah-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: 1.2rem;
  border-left: 2px solid var(--c-terracotta);
  padding-left: 0.75rem;
}

.ah-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--c-white);
  margin: 0 0 1.5rem 0;
}

.ah-hero__title em {
  font-style: italic;
  color: var(--c-sand);
}

.ah-hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(253, 250, 245, 0.82);
  margin: 0 0 2.5rem 0;
  max-width: 480px;
}

.ah-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.ah-hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.ah-hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--c-sand));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────────────────────────────────────── */
.ah-stats {
  background: var(--c-bark);
  color: var(--c-cream);
}

.ah-stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem var(--space-md);
  flex-wrap: wrap;
}

.ah-stat {
  flex: 1 1 auto;
  text-align: center;
  padding: 0.5rem 1.5rem;
  min-width: 120px;
}

.ah-stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--c-sand);
  margin-bottom: 0.25rem;
}

.ah-stat__number small {
  font-size: 1.1rem;
}

.ah-stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212, 196, 168, 0.7);
}

.ah-stat--divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 196, 168, 0.25);
  flex: 0 0 1px;
  min-width: 0;
  padding: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   STORY SECTION
───────────────────────────────────────────────────────────────────────────── */
.ah-story {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-cream);
}

.ah-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ah-story__text {
  padding-top: 2rem;
}

.ah-story__text p {
  font-size: 1.05rem;
  color: #4a3f35;
  margin-bottom: 1.25rem;
}

.ah-story__text strong {
  color: var(--c-bark);
  font-weight: 500;
}

.ah-story__text em {
  color: var(--c-terracotta);
  font-style: italic;
}

.ah-story__highlights {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ah-story__highlights li {
  font-size: 0.9rem;
  color: var(--c-bark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ah-icon {
  font-size: 1.1rem;
}

/* image pair */
.ah-story__image-pair {
  position: relative;
  height: 560px;
}

.ah-story__fig {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(26, 21, 16, 0.18);
}

.ah-story__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.ah-story__fig:hover img {
  transform: scale(1.04);
}

.ah-story__fig--top {
  top: 0;
  left: 0;
  width: 72%;
  height: 360px;
}

.ah-story__fig--bottom {
  bottom: 0;
  right: 0;
  width: 58%;
  height: 280px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────────────────────────────── */
.ah-gallery {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-parchment);
}

.ah-gallery__header {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
}

/* ── Desktop masonry grid ── */
.ah-gallery__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.ah-gallery__item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}

.ah-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
  display: block;
}

.ah-gallery__item:hover img {
  transform: scale(1.07);
}

.ah-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(26,21,16,0.7), transparent);
  color: var(--c-sand);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s var(--ease-smooth);
}

.ah-gallery__item:hover .ah-gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* Span variants */
.ah-gallery__item--wide {
  grid-column: span 2;
}

.ah-gallery__item--tall {
  grid-row: span 2;
}

/* ── Mobile Splide slider (hidden on desktop) ── */
.ah-gallery__slider {
  display: none;
}

.ah-slider__fig {
  margin: 0;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.ah-slider__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ah-slider__fig figcaption {
  padding: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--c-bark);
  text-align: center;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────────────
   AMENITIES
───────────────────────────────────────────────────────────────────────────── */
.ah-amenities {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-cream);
}

.ah-amenities__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ah-amenities__header {
  margin-bottom: 3.5rem;
}

.ah-amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ah-amenity-card {
  background: var(--c-white);
  border: 1px solid rgba(176, 141, 106, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.ah-amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-terracotta), var(--c-clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-smooth);
}

.ah-amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(90, 62, 43, 0.12);
  border-color: transparent;
}

.ah-amenity-card:hover::before {
  transform: scaleX(1);
}

.ah-amenity-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.ah-amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-bark);
  margin: 0 0 0.75rem 0;
}

.ah-amenity-card p {
  font-size: 0.9rem;
  color: #6b5d52;
  margin: 0;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CINEMATIC QUOTE / VIEW
───────────────────────────────────────────────────────────────────────────── */
.ah-view {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ah-view__bg {
  position: absolute;
  inset: 0;
}

.ah-view__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s var(--ease-smooth);
}

.ah-view:hover .ah-view__bg img {
  transform: scale(1.05);
}

.ah-view__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0.58);
}

.ah-view__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-md);
}

.ah-view__quote {
  margin: 0;
  max-width: 600px;
}

.ah-view__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--c-white);
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

.ah-view__quote cite {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-sand);
}

/* ─────────────────────────────────────────────────────────────────────────────
   LOCATION
───────────────────────────────────────────────────────────────────────────── */
.ah-location {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-parchment);
}

.ah-location__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ah-location__text p {
  font-size: 1.05rem;
  color: #4a3f35;
  margin-bottom: 2rem;
}

.ah-location__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ah-location__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(176, 141, 106, 0.2);
  font-size: 0.95rem;
  color: var(--c-bark);
}

.ah-location__list li span {
  font-size: 1.1rem;
  width: 1.5rem;
  text-align: center;
}

/* Map placeholder */
.ah-map-placeholder {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 420px;
  box-shadow: 0 20px 60px rgba(26, 21, 16, 0.18);
}

.ah-map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ah-map-placeholder__label {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-bark);
  color: var(--c-cream);
  padding: 0.5rem 1.5rem;
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────────────────────
   REVIEWS
───────────────────────────────────────────────────────────────────────────── */
.ah-reviews {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-cream);
}

.ah-reviews__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ah-reviews__header {
  margin-bottom: 3.5rem;
}

.ah-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ah-review {
  margin: 0;
  padding: 2.5rem;
  background: var(--c-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(176, 141, 106, 0.18);
  position: relative;
}

.ah-review::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(176, 141, 106, 0.15);
  font-style: italic;
}

.ah-review__stars {
  color: var(--c-terracotta);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.ah-review p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #4a3f35;
  font-style: italic;
  margin: 0 0 1.25rem 0;
}

.ah-review cite {
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-clay);
}

/* ─────────────────────────────────────────────────────────────────────────────
   BOOKING CTA
───────────────────────────────────────────────────────────────────────────── */
.ah-book {
  padding: var(--space-xl) var(--space-md);
  background: var(--c-charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ah-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b08d6a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.ah-book__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.ah-book__inner .ah-label {
  color: var(--c-clay);
}

.ah-book__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--c-cream);
  margin: 0 0 1rem 0;
}

.ah-book__sub {
  font-size: 1rem;
  color: rgba(212, 196, 168, 0.72);
  margin: 0 0 2.5rem 0;
}

.ah-book__note {
  margin: 1.5rem 0 0 0;
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.5);
}

.ah-book__note a {
  color: var(--c-clay);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 141, 106, 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.ah-book__note a:hover {
  color: var(--c-sand);
  border-color: var(--c-sand);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FANCYBOX CUSTOMISATION
───────────────────────────────────────────────────────────────────────────── */
.fancybox__container {
  --fancybox-bg: rgba(26, 21, 16, 0.97);
}

.fancybox__caption {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--c-sand);
  text-align: center;
  padding: 0.75rem 2rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SPLIDE CUSTOMISATION
───────────────────────────────────────────────────────────────────────────── */
.ah-gallery__slider .splide__arrow {
  background: var(--c-bark);
  opacity: 1;
}

.ah-gallery__slider .splide__arrow svg {
  fill: var(--c-cream);
}

.ah-gallery__slider .splide__pagination__page {
  background: var(--c-sand);
}

.ah-gallery__slider .splide__pagination__page.is-active {
  background: var(--c-terracotta);
  transform: scale(1.3);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet  (≤ 1024px)
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ah-amenities__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ah-story__inner,
  .ah-location__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ah-story__image-pair {
    height: 380px;
  }

  .ah-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Mobile  (≤ 768px)
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Hero */
  .ah-hero__content {
    padding: var(--space-md);
  }

  .ah-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Stats */
  .ah-stats__inner {
    flex-wrap: wrap;
    gap: 0;
  }

  .ah-stat {
    flex: 1 1 50%;
    padding: 1rem;
  }

  .ah-stat--divider {
    display: none;
  }

  /* Story highlights */
  .ah-story__highlights {
    grid-template-columns: 1fr;
  }

  .ah-story__image-pair {
    height: 320px;
  }

  /* Gallery: hide grid, show slider */
  .ah-gallery__grid {
    display: none;
  }

  .ah-gallery__slider {
    display: block;
    max-width: 100%;
  }

  /* Amenities */
  .ah-amenities__grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .ah-reviews__grid {
    grid-template-columns: 1fr;
  }

  /* Location */
  .ah-location__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ah-map-placeholder {
    height: 280px;
  }

  /* View / quote */
  .ah-view {
    height: 380px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ah-hero__img,
  .ah-view__bg img {
    animation: none;
    transform: none;
  }

  .ah-hero__content {
    animation: none;
  }

  .ah-amenity-card,
  .ah-gallery__item img,
  .ah-story__fig img {
    transition: none;
  }
}

/* =============================================================================
   ARTSY HOMES — about-hosts.css
   Append to the bottom of your existing style.css
   ============================================================================= */


/* ─────────────────────────────────────────────────────────────────────────────
   PAGE WRAPPER
───────────────────────────────────────────────────────────────────────────── */
.about-page-area {
  background: var(--c-cream);
  color: var(--c-charcoal);
  font-family: var(--font-body);
}

.about-page-area .site-main {
  margin: 0;
  padding: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   HERO — typographic, no image
───────────────────────────────────────────────────────────────────────────── */
.ab-hero {
  padding: calc(var(--hdr-height, 72px) + 5rem) 2rem 4rem;
  background: var(--c-charcoal);
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b08d6a' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.ab-hero__inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.ab-hero .ah-label {
  color: var(--c-clay);
}

.ab-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--c-white);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.1;
}

.ab-hero__title em {
  font-style: italic;
  color: var(--c-sand);
}

.ab-hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(212, 196, 168, 0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.ab-hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(176, 141, 106, 0.5), transparent);
  margin: 3rem auto 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   HOST CARDS
───────────────────────────────────────────────────────────────────────────── */
.ab-hosts {
  padding: var(--space-xl, 7rem) 2rem;
  background: var(--c-cream);
}

.ab-hosts__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* ── Individual card ── */
.ab-host-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.ab-host-card--reverse {
  grid-template-columns: 1fr 340px;
}

.ab-host-card--reverse .ab-host-card__portrait {
  order: 2;
}

.ab-host-card--reverse .ab-host-card__content {
  order: 1;
}

/* ── Portrait ── */
.ab-host-card__portrait {
  position: relative;
  flex-shrink: 0;
}

.ab-host-card__portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(26, 21, 16, 0.18);
}

.ab-host-card__portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(26, 21, 16, 0.35) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.ab-host-card__portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.ab-host-card:hover .ab-host-card__portrait-frame img {
  transform: scale(1.04);
}

/* Decorative emoji accent */
.ab-host-card__portrait-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 54px;
  height: 54px;
  background: var(--c-parchment);
  border: 2px solid var(--c-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(26, 21, 16, 0.12);
  z-index: 2;
}

/* ── Card content ── */
.ab-host-card__content {
  padding-top: 0.5rem;
}

.ab-host-card__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--c-ink);
  margin: 0.25rem 0 0.2rem;
  line-height: 1.1;
}

.ab-host-card__name span {
  font-style: italic;
  color: var(--c-terracotta);
}

.ab-host-card__role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-clay);
  margin: 0 0 1.75rem;
}

.ab-host-card__content p {
  font-size: 1rem;
  color: #4a3f35;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

/* Tags */
.ab-host-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.ab-tag {
  display: inline-block;
  padding: 0.35em 0.9em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--c-bark);
  background: var(--c-parchment);
  border: 1px solid rgba(176, 141, 106, 0.3);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}

.ab-tag:hover {
  background: var(--c-sand);
  border-color: var(--c-clay);
}

/* ── Section divider between the two hosts ── */
.ab-hosts__divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
}

.ab-hosts__divider-line {
  flex: 1;
  height: 1px;
  background: rgba(176, 141, 106, 0.25);
}

.ab-hosts__divider-symbol {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--c-sand);
  flex-shrink: 0;
  line-height: 1;
}


/* ─────────────────────────────────────────────────────────────────────────────
   TOGETHER SECTION
───────────────────────────────────────────────────────────────────────────── */
.ab-together {
  padding: var(--space-xl, 7rem) 2rem;
  background: var(--c-parchment);
}

.ab-together__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ab-together__text .ah-section-title {
  margin-bottom: 1.25rem;
}

.ab-together__text p {
  font-size: 1.05rem;
  color: #4a3f35;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

/* Values grid */
.ab-together__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ab-value {
  background: var(--c-white);
  border: 1px solid rgba(176, 141, 106, 0.18);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90, 62, 43, 0.1);
}

.ab-value__icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
}

.ab-value h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-bark);
  margin: 0 0 0.5rem;
}

.ab-value p {
  font-size: 0.88rem;
  color: #6b5d52;
  line-height: 1.65;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   PULL QUOTE
───────────────────────────────────────────────────────────────────────────── */
.ab-quote-section {
  padding: var(--space-xl, 7rem) 2rem;
  background: var(--c-bark);
  position: relative;
  overflow: hidden;
}

.ab-quote-section::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 3rem;
  font-family: var(--font-display);
  font-size: 20rem;
  line-height: 1;
  color: rgba(212, 196, 168, 0.06);
  pointer-events: none;
  font-style: italic;
}

.ab-quote-section__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.ab-quote {
  margin: 0;
  text-align: center;
}

.ab-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--c-cream);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.ab-quote cite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-style: normal;
}

.ab-quote__names {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-sand);
}

.ab-quote__location {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(212, 196, 168, 0.5);
}


/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────────────────────────────── */
.ab-contact {
  padding: var(--space-xl, 7rem) 2rem;
  background: var(--c-cream);
}

.ab-contact__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ab-contact__text p {
  font-size: 1.05rem;
  color: #4a3f35;
  line-height: 1.8;
  margin-top: 1rem;
}

.ab-contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ab-channel {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--c-white);
  border: 1px solid rgba(176, 141, 106, 0.2);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

a.ab-channel:hover {
  border-color: var(--c-clay);
  box-shadow: 0 8px 24px rgba(90, 62, 43, 0.1);
  transform: translateX(4px);
}

.ab-channel__icon {
  grid-row: span 2;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-channel__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-clay);
  align-self: end;
}

.ab-channel__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-bark);
  align-self: start;
}


/* ─────────────────────────────────────────────────────────────────────────────
   BOTTOM CTA
───────────────────────────────────────────────────────────────────────────── */
.ab-cta {
  padding: var(--space-xl, 7rem) 2rem;
  background: var(--c-charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ab-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b08d6a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.ab-cta__inner {
  position: relative;
  z-index: 1;
}

.ab-cta__pre {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-clay);
  margin: 0 0 0.75rem;
}

.ab-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--c-cream);
  margin: 0 0 2.5rem;
  line-height: 1.2;
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet ≤ 1024px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .ab-host-card,
  .ab-host-card--reverse {
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
  }

  .ab-together__inner,
  .ab-contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ab-together__values {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Mobile ≤ 768px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .ab-host-card,
  .ab-host-card--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Portrait goes full width on mobile */
  .ab-host-card__portrait-frame {
    aspect-ratio: 3 / 2;
    max-height: 340px;
  }

  /* Reset reverse order on mobile — portrait always first */
  .ab-host-card--reverse .ab-host-card__portrait,
  .ab-host-card--reverse .ab-host-card__content {
    order: unset;
  }

  .ab-hosts__divider {
    padding: 0;
  }

  .ab-together__values {
    grid-template-columns: 1fr;
  }

  .ab-quote p {
    font-size: 1.2rem;
  }

  .ab-contact__channels {
    gap: 0.75rem;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ab-host-card__portrait-frame img,
  .ab-value,
  .ab-channel {
    transition: none;
    transform: none;
  }
}

/* =============================================================================
   ARTSY HOMES — amenities.css
   Append to the bottom of your existing style.css
   ============================================================================= */


/* ─────────────────────────────────────────────────────────────────────────────
   PAGE WRAPPER
───────────────────────────────────────────────────────────────────────────── */
.amenities-page-area {
  background: var(--c-cream);
  color: var(--c-charcoal);
  font-family: var(--font-body);
}

.amenities-page-area .site-main {
  margin: 0;
  padding: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────────────────────── */
.am-hero {
  padding: calc(var(--hdr-height, 72px) + 5rem) 2rem 3.5rem;
  background: var(--c-charcoal);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.am-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b08d6a' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.am-hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.am-hero .ah-label {
  color: var(--c-clay);
}

.am-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 300;
  color: var(--c-white);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.1;
}

.am-hero__title em {
  font-style: italic;
  color: var(--c-sand);
}

.am-hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(212, 196, 168, 0.72);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.am-hero__line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(176, 141, 106, 0.5), transparent);
  margin: 2.5rem auto 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   STICKY ROOM NAV
───────────────────────────────────────────────────────────────────────────── */
.am-room-nav {
  position: sticky;
  top: var(--hdr-height-scroll, 58px);
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid rgba(176, 141, 106, 0.2);
  box-shadow: 0 2px 12px rgba(26, 21, 16, 0.05);
}

.am-room-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.am-room-nav__inner::-webkit-scrollbar {
  display: none;
}

.am-room-nav__item {
  display: inline-block;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #8a7668;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

.am-room-nav__item:hover,
.am-room-nav__item.is-active {
  color: var(--c-terracotta);
  border-bottom-color: var(--c-terracotta);
}


/* ─────────────────────────────────────────────────────────────────────────────
   ROOM SECTIONS
───────────────────────────────────────────────────────────────────────────── */
.am-rooms {
  /* nothing needed — rooms stack naturally */
}

.am-room {
  padding: 5rem 2rem;
  background: var(--c-cream);
  scroll-margin-top: calc(var(--hdr-height-scroll, 58px) + 48px); /* account for sticky nav */
}

.am-room--alt {
  background: var(--c-parchment);
}

/* Coffee station gets a special dark tone */
.am-room--coffee {
  background: var(--c-charcoal);
}

.am-room--coffee .am-room__title,
.am-room--coffee .am-room__desc,
.am-room--coffee .am-item-card h3 {
  color: var(--c-cream);
}

.am-room--coffee .am-item-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(176, 141, 106, 0.2);
}

.am-room--coffee .am-item-card p {
  color: rgba(212, 196, 168, 0.75);
}

.am-room--coffee .am-room__icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(176, 141, 106, 0.25);
}

.am-room--coffee .ah-label {
  color: var(--c-clay);
}

.am-room__inner {
  max-width: 1160px;
  margin: 0 auto;
}


/* ── Room header ── */
.am-room__header {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.am-room__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--c-white);
  border: 1px solid rgba(176, 141, 106, 0.2);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(26, 21, 16, 0.07);
}

.am-room--alt .am-room__icon {
  background: var(--c-cream);
}

.am-room__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--c-ink);
  margin: 0.2rem 0 0.5rem;
  line-height: 1.15;
}

.am-room__desc {
  font-size: 1rem;
  color: #6b5d52;
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   ITEM CARDS GRID
───────────────────────────────────────────────────────────────────────────── */
.am-room__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Tighter 4-col grid for extras (fewer items, less text) */
.am-room__grid--extras {
  grid-template-columns: repeat(4, 1fr);
}

/* Coffee has 3 items — give featured one more space */
.am-room__grid--coffee {
  grid-template-columns: 2fr 1fr 1fr;
}

/* ── Individual card ── */
.am-item-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--c-white);
  border: 1px solid rgba(176, 141, 106, 0.15);
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s;
}

.am-room--alt .am-item-card {
  background: var(--c-white);
}

.am-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(90, 62, 43, 0.09);
  border-color: rgba(176, 141, 106, 0.35);
}

/* Featured card spans 2 cols */
.am-item-card--featured {
  grid-column: span 2;
}

.am-item-card--books {
  /* normal span but slight accent */
  border-left: 3px solid var(--c-terracotta);
}

.am-item-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}

.am-item-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-bark);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.am-item-card p {
  font-size: 0.88rem;
  color: #6b5d52;
  line-height: 1.65;
  margin: 0;
}

/* Inline links inside card text */
.am-inline-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(158, 90, 56, 0.3);
  transition: border-color 0.2s, color 0.2s;
}

.am-inline-link:hover {
  color: var(--c-bark);
  border-color: var(--c-bark);
}


/* ─────────────────────────────────────────────────────────────────────────────
   ARTISAN BANNER
───────────────────────────────────────────────────────────────────────────── */
.am-artisan-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, #f0e8d8, #e8dcc8);
  border: 1px solid rgba(176, 141, 106, 0.3);
  border-left: 4px solid var(--c-terracotta);
  border-radius: 6px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.am-artisan-banner__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.am-artisan-banner div {
  flex: 1;
  min-width: 200px;
}

.am-artisan-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-bark);
  margin-bottom: 0.2rem;
}

.am-artisan-banner p {
  font-size: 0.88rem;
  color: #6b5d52;
  margin: 0;
  line-height: 1.6;
}

.am-artisan-banner__link {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(158, 90, 56, 0.35);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.am-artisan-banner__link:hover {
  color: var(--c-bark);
  border-color: var(--c-bark);
}


/* ─────────────────────────────────────────────────────────────────────────────
   MODALS
───────────────────────────────────────────────────────────────────────────── */
.am-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.am-modal.is-open {
  display: flex;
}

.am-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
  animation: modalFadeIn 0.3s ease both;
}

.am-modal__box {
  position: relative;
  z-index: 1;
  background: var(--c-white);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(26, 21, 16, 0.25);
  animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

.am-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(176, 141, 106, 0.3);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--c-bark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.am-modal__close:hover {
  background: var(--c-parchment);
  border-color: var(--c-clay);
}

.am-modal__box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--c-ink);
  margin: 0 2rem 0.75rem 0;
}

.am-modal__intro {
  font-size: 0.9rem;
  color: #6b5d52;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(176, 141, 106, 0.2);
}

.am-modal__section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(176, 141, 106, 0.12);
}

.am-modal__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.am-modal__section h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-bark);
  margin: 0 0 0.5rem;
}

.am-modal__section p {
  font-size: 0.88rem;
  color: #6b5d52;
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.am-modal__section a {
  color: var(--c-terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(158, 90, 56, 0.3);
  transition: color 0.2s;
}

.am-modal__section a:hover {
  color: var(--c-bark);
}

/* Two-column list layout for kitchen/pantry */
.am-modal__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.am-modal__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.am-modal__cols ul li {
  font-size: 0.88rem;
  color: #4a3f35;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(176, 141, 106, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.am-modal__cols ul li::before {
  content: '–';
  color: var(--c-clay);
  flex-shrink: 0;
}

/* Body lock when modal open */
body.modal-open {
  overflow: hidden;
}


/* ─────────────────────────────────────────────────────────────────────────────
   BOTTOM CTA
───────────────────────────────────────────────────────────────────────────── */
.am-cta {
  padding: 6rem 2rem;
  background: var(--c-charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.am-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b08d6a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.am-cta__inner {
  position: relative;
  z-index: 1;
}

.am-cta__inner .ah-label {
  color: var(--c-clay);
}

.am-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--c-cream);
  margin: 0.5rem 0 2.5rem;
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet ≤ 1024px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .am-room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .am-room__grid--extras {
    grid-template-columns: repeat(3, 1fr);
  }

  .am-room__grid--coffee {
    grid-template-columns: 1fr 1fr;
  }

  .am-item-card--featured {
    grid-column: span 2;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Mobile ≤ 768px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .am-room {
    padding: 3.5rem 1.25rem;
  }

  .am-room__header {
    flex-direction: column;
    gap: 1rem;
  }

  .am-room__grid,
  .am-room__grid--extras,
  .am-room__grid--coffee {
    grid-template-columns: 1fr;
  }

  .am-item-card--featured {
    grid-column: span 1;
  }

  .am-artisan-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .am-modal__cols {
    grid-template-columns: 1fr;
  }

  .am-modal__box {
    padding: 1.75rem 1.25rem;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .am-item-card,
  .am-modal__box,
  .am-modal__backdrop {
    animation: none;
    transition: none;
  }
}

/* =============================================================================
   ARTSY HOMES — extras.css
   Append to the bottom of your existing style.css
   ============================================================================= */


/* ─────────────────────────────────────────────────────────────────────────────
   PAGE WRAPPER
───────────────────────────────────────────────────────────────────────────── */
.extras-page-area {
  background: var(--c-cream);
  color: var(--c-charcoal);
  font-family: var(--font-body);
}

.extras-page-area .site-main {
  margin: 0;
  padding: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────────────────────── */
.ex-hero {
  padding: calc(var(--hdr-height, 72px) + 5rem) 2rem 4rem;
  background: var(--c-charcoal);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ex-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b08d6a' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.ex-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.ex-hero .ah-label {
  color: var(--c-clay);
}

.ex-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 300;
  color: var(--c-white);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.1;
}

.ex-hero__title em {
  font-style: italic;
  color: var(--c-sand);
}

.ex-hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(212, 196, 168, 0.75);
  line-height: 1.75;
  margin: 0 auto 1.25rem;
}

.ex-hero__note {
  font-size: 0.88rem;
  color: rgba(176, 141, 106, 0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(176, 141, 106, 0.2);
  border-radius: 4px;
  background: rgba(176, 141, 106, 0.06);
}

.ex-hero__note a {
  color: var(--c-clay);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 141, 106, 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.ex-hero__note a:hover {
  color: var(--c-sand);
  border-color: var(--c-sand);
}


/* ─────────────────────────────────────────────────────────────────────────────
   EXTRAS SECTION WRAPPER
───────────────────────────────────────────────────────────────────────────── */
.ex-section {
  padding: 5rem 2rem;
  background: var(--c-cream);
}

.ex-section__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}


/* ─────────────────────────────────────────────────────────────────────────────
   EXTRA CARD
───────────────────────────────────────────────────────────────────────────── */
.ex-card {
  background: var(--c-white);
  border: 1px solid rgba(176, 141, 106, 0.18);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ex-card:hover {
  box-shadow: 0 20px 50px rgba(90, 62, 43, 0.12);
  transform: translateY(-4px);
}

/* Wide card spans full row */
.ex-card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
}

/* ── Colour accent tops ── */
.ex-card--birthday  { border-top: 3px solid #d4a0b0; }
.ex-card--romance   { border-top: 3px solid #c44569; }
.ex-card--fridge    { border-top: 3px solid var(--c-sage); }
.ex-card--gaming    { border-top: 3px solid #6c7bbf; }
.ex-card--experiences { border-top: 3px solid var(--c-terracotta); }

/* ── Visual panel (emoji + tag) ── */
.ex-card__visual {
  padding: 2.5rem 2rem 1rem;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.ex-card--wide .ex-card__visual {
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  min-width: 160px;
  background: var(--c-parchment);
  border-right: 1px solid rgba(176, 141, 106, 0.15);
}

.ex-card__emoji {
  font-size: 3rem;
  line-height: 1;
  display: block;
}

.ex-card__tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-terracotta);
  padding: 0.3em 0.75em;
  border-radius: 2px;
}

/* ── Card body ── */
.ex-card__body {
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ex-card--wide .ex-card__body {
  padding: 2.5rem 2.5rem 2.5rem 2rem;
}

.ex-card .ah-label {
  margin-bottom: 0.4rem;
}

.ex-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--c-ink);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.ex-card__desc {
  font-size: 0.95rem;
  color: #6b5d52;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

/* Includes list */
.ex-card__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ex-card__includes li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #4a3f35;
  line-height: 1.5;
}

.ex-card__includes li span {
  flex-shrink: 0;
  font-size: 1rem;
}

.ex-card__includes em {
  font-style: italic;
  color: var(--c-terracotta);
}

/* How it works (numbered) */
.ex-card__how {
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--c-parchment);
  border-radius: 6px;
}

.ex-card__how h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-bark);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-style: normal;
  font-size: 0.75rem;
}

.ex-card__how ol {
  padding: 0 0 0 1.25rem;
  margin: 0;
}

.ex-card__how ol li {
  font-size: 0.88rem;
  color: #4a3f35;
  line-height: 1.65;
  padding: 0.3rem 0;
}

/* CTA button — push to bottom */
.ex-card__cta {
  margin-top: auto;
  align-self: flex-start;
}


/* ─────────────────────────────────────────────────────────────────────────────
   EXPERIENCES GRID (inside the wide card)
───────────────────────────────────────────────────────────────────────────── */
.ex-experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.ex-experience {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--c-parchment);
  border-radius: 6px;
  border: 1px solid rgba(176, 141, 106, 0.15);
  transition: background 0.25s, border-color 0.25s;
}

.ex-experience:hover {
  background: #ede3d0;
  border-color: rgba(176, 141, 106, 0.35);
}

.ex-experience--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #f0e8d8, #e8dcc8);
  border-color: rgba(176, 141, 106, 0.3);
}

.ex-experience__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ex-experience h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-bark);
  margin: 0 0 0.3rem;
}

.ex-experience p {
  font-size: 0.82rem;
  color: #6b5d52;
  line-height: 1.6;
  margin: 0;
}

.ex-experience__badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-terracotta);
  padding: 0.25em 0.7em;
  border-radius: 2px;
}


/* ─────────────────────────────────────────────────────────────────────────────
   HOW IT WORKS PROCESS STRIP
───────────────────────────────────────────────────────────────────────────── */
.ex-process {
  padding: 5rem 2rem;
  background: var(--c-parchment);
}

.ex-process__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.ex-process__inner .ah-section-title {
  margin-bottom: 3rem;
}

.ex-process__steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ex-step {
  flex: 1;
  padding: 1.75rem 1.5rem;
  background: var(--c-white);
  border-radius: 8px;
  border: 1px solid rgba(176, 141, 106, 0.18);
}

.ex-step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(176, 141, 106, 0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.ex-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-bark);
  margin: 0 0 0.5rem;
}

.ex-step p {
  font-size: 0.88rem;
  color: #6b5d52;
  line-height: 1.65;
  margin: 0;
}

.ex-step__arrow {
  font-size: 1.5rem;
  color: rgba(176, 141, 106, 0.4);
  flex-shrink: 0;
  padding-top: 1.75rem;
  line-height: 1;
}


/* ─────────────────────────────────────────────────────────────────────────────
   BOTTOM CTA
───────────────────────────────────────────────────────────────────────────── */
.ex-cta {
  padding: 6rem 2rem;
  background: var(--c-charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ex-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b08d6a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.ex-cta__inner {
  position: relative;
  z-index: 1;
}

.ex-cta__inner .ah-label {
  color: var(--c-clay);
}

.ex-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--c-cream);
  margin: 0.5rem 0 2.5rem;
}

.ex-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ghost button dark variant (for dark backgrounds) */
.ah-btn--ghost-dark {
  background: transparent;
  color: var(--c-sand);
  border: 1px solid rgba(212, 196, 168, 0.35);
}

.ah-btn--ghost-dark:hover {
  background: rgba(212, 196, 168, 0.08);
  border-color: var(--c-sand);
  color: var(--c-white);
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet ≤ 1024px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .ex-experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ex-experience--featured {
    grid-column: span 2;
  }

  .ex-process__steps {
    flex-wrap: wrap;
  }

  .ex-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }

  .ex-step__arrow {
    display: none;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Mobile ≤ 768px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .ex-section__inner {
    grid-template-columns: 1fr;
  }

  .ex-card--wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .ex-card--wide .ex-card__visual {
    border-right: none;
    border-bottom: 1px solid rgba(176, 141, 106, 0.15);
    min-width: unset;
    padding: 1.75rem 2rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .ex-card--wide .ex-card__body {
    padding: 1.5rem;
  }

  .ex-experiences-grid {
    grid-template-columns: 1fr;
  }

  .ex-experience--featured {
    grid-column: span 1;
  }

  .ex-process__steps {
    flex-direction: column;
  }

  .ex-step {
    flex: 1 1 100%;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ex-card {
    transition: none;
    transform: none;
  }

  .ex-experience {
    transition: none;
  }
}

/* =============================================================================
   ARTSY HOMES — contact.css
   Append to the bottom of your existing style.css
   ============================================================================= */


/* ─────────────────────────────────────────────────────────────────────────────
   PAGE WRAPPER
───────────────────────────────────────────────────────────────────────────── */
.contact-page-area {
  background: var(--c-cream);
  color: var(--c-charcoal);
  font-family: var(--font-body);
}

.contact-page-area .site-main {
  margin: 0;
  padding: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────────────────────── */
.ct-hero {
  padding: calc(var(--hdr-height, 72px) + 4.5rem) 2rem 3.5rem;
  background: var(--c-charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b08d6a' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.ct-hero__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.ct-hero .ah-label {
  color: var(--c-clay);
}

.ct-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--c-white);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.1;
}

.ct-hero__title em {
  font-style: italic;
  color: var(--c-sand);
}

.ct-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(212, 196, 168, 0.75);
  line-height: 1.75;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   MAP + SIDEBAR LAYOUT
───────────────────────────────────────────────────────────────────────────── */
.ct-map-section {
  padding: 0;
  background: var(--c-cream);
}

.ct-map-section__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 560px;
  max-width: 100%;
}


/* ── MAP ── */
.ct-map-wrap {
  position: relative;
  min-height: 520px;
}

.ct-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
  z-index: 1;
}

/* Google Maps CTA button floating over the map */
.ct-map-cta {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7em 1.6em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-white);
  background: var(--c-terracotta);
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(26, 21, 16, 0.25);
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.ct-map-cta:hover {
  background: var(--c-bark);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 21, 16, 0.3);
}

.ct-map-cta__icon {
  font-size: 1rem;
}

.ct-map-cta__arrow {
  font-size: 0.9rem;
  opacity: 0.8;
}


/* ── SIDEBAR ── */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--c-parchment);
  border-left: 1px solid rgba(176, 141, 106, 0.2);
  overflow: hidden;
}


/* ── Address card ── */
.ct-address-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 1.75rem;
  border-bottom: 1px solid rgba(176, 141, 106, 0.18);
}

.ct-address-card__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ct-address-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-bark);
  margin: 0 0 0.25rem;
}

.ct-address-card__street,
.ct-address-card__city,
.ct-address-card__country {
  font-size: 0.88rem;
  color: #6b5d52;
  margin: 0;
  line-height: 1.6;
}

.ct-address-card__country {
  color: var(--c-clay);
  font-weight: 500;
}


/* ── Socials ── */
.ct-socials {
  padding: 1.75rem 1.75rem;
  border-bottom: 1px solid rgba(176, 141, 106, 0.18);
}

.ct-socials .ah-label {
  display: block;
  margin-bottom: 1rem;
}

.ct-socials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.ct-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: var(--c-white);
  border: 1px solid rgba(176, 141, 106, 0.2);
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.ct-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(90, 62, 43, 0.1);
  border-color: var(--c-clay);
}

.ct-social__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-social__icon svg {
  width: 16px;
  height: 16px;
}

.ct-social__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* Social brand colours */
.ct-social--fb  { color: #1877f2; }
.ct-social--ig  { color: #e1306c; }
.ct-social--yt  { color: #ff0000; }
.ct-social--email  { color: var(--c-terracotta); }
.ct-social--airbnb { color: #ff5a5f; }
.ct-social--wa  { color: #25d366; }

.ct-social__label { color: var(--c-charcoal); }


/* ── Discover the city CTA ── */
.ct-discover {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  background: linear-gradient(160deg, var(--c-parchment), #e8dcc8);
}

.ct-discover__text h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-bark);
  margin: 0 0 0.3rem;
}

.ct-discover__text p {
  font-size: 0.85rem;
  color: #6b5d52;
  line-height: 1.6;
  margin: 0;
}

.ct-discover__btn {
  align-self: flex-start;
}


/* ─────────────────────────────────────────────────────────────────────────────
   LEAFLET CUSTOM MARKER STYLES
───────────────────────────────────────────────────────────────────────────── */

/* Override Leaflet default */
.artsy-marker {
  background: transparent !important;
  border: none !important;
}

.artsy-marker__bubble {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(26, 21, 16, 0.25);
  transition: transform 0.2s;
  cursor: pointer;
}

.artsy-marker__bubble span,
.artsy-marker__bubble {
  font-size: 0; /* hide emoji from bubble, show via ::before */
}

/* Show emoji inside bubble via content trick — set in JS via innerHTML */
.artsy-marker__bubble {
  font-size: 1rem !important;
  transform: rotate(-45deg);
}

/* The pin tip triangle */
.artsy-marker__tip {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top-width: 8px;
  border-top-style: solid;
  margin: 0 auto;
}

/* Home marker is slightly larger, no rotation */
.artsy-marker--home .artsy-marker__bubble {
  border-radius: 50%;
  transform: none;
  font-size: 1.1rem !important;
}

/* Popup styles */
.artsy-leaflet-popup .leaflet-popup-content-wrapper {
  background: var(--c-white);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(26, 21, 16, 0.18);
  border: 1px solid rgba(176, 141, 106, 0.2);
  padding: 0;
}

.artsy-leaflet-popup .leaflet-popup-content {
  margin: 0;
  padding: 0;
}

.artsy-popup {
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.6;
  color: #4a3f35;
}

.artsy-popup strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-bark);
  margin-bottom: 2px;
}

.artsy-popup em {
  font-style: italic;
  color: var(--c-clay);
  font-size: 0.78rem;
}

.artsy-leaflet-popup .leaflet-popup-tip-container {
  display: none; /* we use custom tips in the marker itself */
}

.artsy-leaflet-popup .leaflet-popup-close-button {
  color: var(--c-clay) !important;
  font-size: 1rem !important;
  top: 4px !important;
  right: 6px !important;
}


/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT FORM SECTION
───────────────────────────────────────────────────────────────────────────── */
.ct-form-section {
  padding: 5rem 2rem;
  background: var(--c-cream);
}

.ct-form-section__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.ct-form-header p {
  font-size: 1rem;
  color: #6b5d52;
  line-height: 1.75;
  margin-top: 1rem;
}

/* CF7 form container */
.ct-form-wrap {
  background: var(--c-white);
  border: 1px solid rgba(176, 141, 106, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(26, 21, 16, 0.05);
}

/* Placeholder when CF7 is not yet configured */
.ct-form-placeholder {
  text-align: center;
  padding: 2rem;
}

.ct-form-placeholder__note {
  font-size: 0.88rem;
  color: #8a7668;
  line-height: 1.7;
  background: var(--c-parchment);
  border: 1px dashed rgba(176, 141, 106, 0.4);
  border-radius: 4px;
  padding: 1.5rem;
}

.ct-form-placeholder__note code {
  background: rgba(176, 141, 106, 0.15);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-size: 0.82rem;
  color: var(--c-terracotta);
}

/* ── CF7 field styling — overrides CF7 defaults ── */
.ct-form-wrap .wpcf7-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-clay);
  margin-bottom: 0.4rem;
  margin-top: 1.25rem;
}

.ct-form-wrap .wpcf7-form label:first-child {
  margin-top: 0;
}

.ct-form-wrap .wpcf7-form input[type="text"],
.ct-form-wrap .wpcf7-form input[type="email"],
.ct-form-wrap .wpcf7-form input[type="tel"],
.ct-form-wrap .wpcf7-form textarea,
.ct-form-wrap .wpcf7-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--c-charcoal);
  background: var(--c-cream);
  border: 1px solid rgba(176, 141, 106, 0.3);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.ct-form-wrap .wpcf7-form input:focus,
.ct-form-wrap .wpcf7-form textarea:focus,
.ct-form-wrap .wpcf7-form select:focus {
  border-color: var(--c-clay);
  box-shadow: 0 0 0 3px rgba(176, 141, 106, 0.15);
}

.ct-form-wrap .wpcf7-form textarea {
  min-height: 130px;
  resize: vertical;
}

.ct-form-wrap .wpcf7-form input[type="submit"] {
  margin-top: 1.5rem;
  padding: 0.85em 2.5em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-terracotta);
  border: 1px solid var(--c-terracotta);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
}

.ct-form-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--c-bark);
  border-color: var(--c-bark);
  transform: translateY(-1px);
}

/* CF7 response messages */
.ct-form-wrap .wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  border-radius: 4px;
  border: none !important;
}

.ct-form-wrap .wpcf7-mail-sent-ok {
  background: rgba(122, 140, 110, 0.15);
  color: var(--c-moss);
}

.ct-form-wrap .wpcf7-validation-errors,
.ct-form-wrap .wpcf7-mail-sent-ng {
  background: rgba(158, 90, 56, 0.1);
  color: var(--c-terracotta);
}

.ct-form-wrap .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: var(--c-terracotta);
  margin-top: 0.25rem;
}


/* ─────────────────────────────────────────────────────────────────────────────
   INFO STRIP
───────────────────────────────────────────────────────────────────────────── */
.ct-info-strip {
  background: var(--c-bark);
  padding: 2rem;
}

.ct-info-strip__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  border: 1px solid rgba(212, 196, 168, 0.1);
}

.ct-info-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ct-info-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-sand);
  margin-bottom: 0.1rem;
}

.ct-info-item span {
  font-size: 0.8rem;
  color: rgba(212, 196, 168, 0.65);
  line-height: 1.5;
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet ≤ 1024px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .ct-map-section__inner {
    grid-template-columns: 1fr;
  }

  .ct-sidebar {
    border-left: none;
    border-top: 1px solid rgba(176, 141, 106, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .ct-address-card {
    border-bottom: none;
    border-right: 1px solid rgba(176, 141, 106, 0.18);
  }

  .ct-discover {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .ct-form-section__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ct-info-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Mobile ≤ 768px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .ct-map-wrap,
  .ct-map {
    min-height: 340px;
  }

  .ct-sidebar {
    grid-template-columns: 1fr;
  }

  .ct-address-card {
    border-right: none;
    border-bottom: 1px solid rgba(176, 141, 106, 0.18);
  }

  .ct-discover {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .ct-socials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ct-form-wrap {
    padding: 1.5rem;
  }

  .ct-info-strip__inner {
    grid-template-columns: 1fr;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ct-map-cta,
  .ct-social,
  .ct-form-wrap .wpcf7-form input[type="submit"] {
    transition: none;
    transform: none !important;
  }
}

/* =============================================================================
   ARTSY HOMES — footer.css
   Append to the bottom of your existing style.css
   ============================================================================= */


/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER SHELL
───────────────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-ink);
  color: rgba(212, 196, 168, 0.7);
  font-family: var(--font-body);
}


/* ─────────────────────────────────────────────────────────────────────────────
   MAIN FOOTER GRID
───────────────────────────────────────────────────────────────────────────── */
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 2rem 3.5rem;
  border-bottom: 1px solid rgba(176, 141, 106, 0.12);
}


/* ─────────────────────────────────────────────────────────────────────────────
   BRAND COLUMN
───────────────────────────────────────────────────────────────────────────── */
.footer-brand__link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1rem;
}

/* Custom logo */
.footer-brand__link .custom-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(0.9);
  opacity: 0.85;
  transition: opacity 0.25s;
}

.footer-brand__link:hover .custom-logo {
  opacity: 1;
}

/* Text wordmark fallback */
.footer-brand__wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--c-cream);
  line-height: 1;
}

.footer-brand__wordmark em {
  font-style: italic;
  color: var(--c-sand);
}

.footer-brand__tagline {
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.55);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

/* Social icons row */
.footer-socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(176, 141, 106, 0.65);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(176, 141, 106, 0.15);
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.2s;
}

.footer-social:hover {
  color: var(--c-sand);
  background: rgba(176, 141, 106, 0.12);
  border-color: rgba(176, 141, 106, 0.35);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}


/* ─────────────────────────────────────────────────────────────────────────────
   COLUMN LABEL (shared)
───────────────────────────────────────────────────────────────────────────── */
.footer-nav__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-clay);
  margin-bottom: 1.25rem;
}


/* ─────────────────────────────────────────────────────────────────────────────
   NAV COLUMN
───────────────────────────────────────────────────────────────────────────── */
.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-nav__list li a {
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(212, 196, 168, 0.65);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s, padding-left 0.25s;
}

.footer-nav__list li a:hover {
  color: var(--c-sand);
  border-bottom-color: rgba(176, 141, 106, 0.3);
  padding-left: 4px;
}

.footer-nav__list .current-menu-item > a {
  color: var(--c-clay);
}


/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT COLUMN
───────────────────────────────────────────────────────────────────────────── */
.footer-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.6);
  line-height: 1.6;
}

.footer-contact__icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact__list a {
  color: rgba(212, 196, 168, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 141, 106, 0.2);
  transition: color 0.25s, border-color 0.25s;
}

.footer-contact__list a:hover {
  color: var(--c-sand);
  border-color: rgba(176, 141, 106, 0.5);
}


/* ─────────────────────────────────────────────────────────────────────────────
   CTA COLUMN
───────────────────────────────────────────────────────────────────────────── */
.footer-cta p {
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.55);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.footer-cta .ah-btn--primary {
  font-size: 0.75rem;
}


/* ─────────────────────────────────────────────────────────────────────────────
   BOTTOM BAR
───────────────────────────────────────────────────────────────────────────── */
.site-footer__bottom {
  background: rgba(0, 0, 0, 0.2);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  flex-wrap: wrap;
}

.footer-copy,
.footer-credit {
  font-size: 0.75rem;
  color: rgba(176, 141, 106, 0.4);
  margin: 0;
  line-height: 1.5;
}

.footer-copy a,
.footer-credit a {
  color: rgba(176, 141, 106, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 141, 106, 0.2);
  transition: color 0.2s, border-color 0.2s;
}

.footer-copy a:hover,
.footer-credit a:hover {
  color: var(--c-clay);
  border-color: rgba(176, 141, 106, 0.4);
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet ≤ 1024px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 2.5rem;
  }

  .footer-brand__link {
    grid-row: span 2;
    align-self: start;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Mobile ≤ 640px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2.5rem;
  }

  .footer-brand {
    grid-column: span 1;
    display: block;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1rem 1.5rem;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .footer-social,
  .footer-nav__list li a {
    transition: none;
    transform: none !important;
  }
}

/* ─── Back to top button ─────────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-cream);
  background: var(--c-bark);
  border: 1px solid rgba(176, 141, 106, 0.3);
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 21, 16, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.25s;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--c-terracotta);
  border-color: rgba(158, 90, 56, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}