/* ====================================================================
   AROMA TILES — STYLESHEET
   ----------------------------------------------------------------
   COLOR & FONT TOKENS are defined first under :root.
   If you want to retheme the site, change values there only.
   ==================================================================== */

:root {
  /* ---- Colors (pulled from the Aroma Tiles logo) ---- */
  --color-navy: #1B2A3D;
  /* primary dark / text on light bg */
  --color-cream: #FAF6EF;
  /* main background */
  --color-cream-deep: #F1EADC;
  /* secondary background / cards */
  --color-gold: #C9963D;
  /* primary accent */
  --color-terracotta: #A85A2E;
  /* secondary accent */
  --color-sage: #6E8E8C;
  /* tertiary accent, used sparingly */
  --color-charcoal: #2D2D2D;
  /* body text */
  --color-white: #FFFFFF;

  /* ---- Type ---- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* ---- Layout ---- */
  --container-w: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --shadow-soft: 0 12px 32px -16px rgba(27, 42, 61, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.1;
  font-weight: 600;
}

p {
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin: 0 0 14px;
}

.eyebrow.center {
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}

.section-title.center {
  text-align: center;
}

.section-sub {
  font-size: 17px;
  color: #5C5C5C;
  max-width: 540px;
  margin: 0 auto 56px;
}

.section-sub.center {
  text-align: center;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #142031;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(27, 42, 61, 0.25);
  color: var(--color-navy);
}

.btn-ghost:hover {
  border-color: var(--color-navy);
}

/* ====================================================================
   HEADER
   ==================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 42, 61, 0.08);
}

.site-header .main-nav {
  color: var(--color-white);
}

.site-header.scrolled .main-nav {
  color: var(--color-charcoal);
}

.site-header .main-nav a::after {
  background: var(--color-gold);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.site-header.scrolled .brand-logo {
  filter: none;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-subtext {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.75;
}

.site-header.scrolled .brand-subtext {
  color: var(--color-navy);
  opacity: 0.6;
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 500;
  font-size: 15px;
}

.main-nav a {
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-terracotta);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 14px;
  background: var(--color-gold);
  color: var(--color-navy);
  transition: background 0.3s ease;
}

.site-header.scrolled .nav-cta {
  background: var(--color-navy);
  color: var(--color-white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--color-white);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.site-header.scrolled .nav-toggle span {
  background: var(--color-navy);
}

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 98px;
}

/* Slideshow background */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Dark overlay so white text stays readable over any photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
      rgba(20, 26, 36, 0.82) 0%,
      rgba(20, 26, 36, 0.62) 45%,
      rgba(20, 26, 36, 0.4) 100%);
}

/* Signature element: diagonal tile/grout grid that fades in panel by panel */
.hero-grout {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.grout-grid {
  position: absolute;
  inset: -10%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  transform: rotate(-6deg) scale(1.15);
}

.grout-grid div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  opacity: 0;
  transition: background 1.2s ease, opacity 1.2s ease;
}

.grout-grid div.lit {
  opacity: 1;
  background: rgba(201, 150, 61, 0.18);
}

.grout-grid div.lit.terra {
  background: rgba(168, 90, 46, 0.18);
}

.hero-inner .eyebrow {
  color: var(--color-gold);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.accent-text {
  color: var(--color-gold);
  font-style: italic;
}

.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  z-index: 3;
}

.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 6px;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

/* ====================================================================
   ABOUT
   ==================================================================== */
.about {
  padding: 110px 0;
  background: var(--color-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-inner>* {
  min-width: 0;
}

.about-content {
  min-width: 0;
  max-width: 100%;
}

.about-content p,
.about-content h2 {
  overflow-wrap: break-word;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.tile-stack {
  position: relative;
  width: 280px;
  height: 280px;
}

.stack-tile {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.stack-tile.t1 {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
  z-index: 1;
  background-position: center;
}

.stack-tile.t2 {
  top: 20px;
  left: 40px;
  transform: rotate(4deg);
  z-index: 2;
  background-position: center;
}

.stack-tile.t3 {
  top: 50px;
  left: 20px;
  transform: rotate(-2deg);
  z-index: 3;
  background-position: center;
}

.about-lead {
  font-size: 19px;
  color: var(--color-navy);
  font-weight: 500;
  margin-bottom: 18px;
}

.about-content p:not(.about-lead) {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 42, 61, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-terracotta);
  font-weight: 600;
}

.stat-label {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

/* ====================================================================
   PRODUCTS
   ==================================================================== */
.products {
  padding: 110px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px -16px rgba(27, 42, 61, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

/* Placeholder visuals — REPLACE with real product photography.
   Swap each .product-visual div in index.html for an <img src="assets/your-photo.jpg">
   and remove the matching background rule below. */
.product-visual {
  height: 180px;
  background: linear-gradient(135deg, var(--pc-1), var(--pc-2));
  position: relative;
  overflow: hidden;
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.25) 50%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.25) 50%, transparent 52%);
  background-size: 60px 60px;
  opacity: 0.5;
}

/* Real photo variant: no grid overlay, just a clean cover-fit photo */
.product-visual--photo {
  background-size: cover;
  background-position: center;
}

.product-visual--photo::before {
  content: none;
}

.product-body {
  padding: 22px 22px 26px;
}

.product-body h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.product-body p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.55;
}

.product-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #999;
}

.product-note code {
  background: var(--color-cream-deep);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ====================================================================
   COLOUR SWATCHES
   ==================================================================== */
.swatches {
  padding: 100px 0;
  background: var(--color-cream-deep);
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.swatch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.swatch-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px -10px rgba(27, 42, 61, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swatch-card:hover .swatch-photo {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-soft);
}

.swatch-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  text-align: center;
}

/* ====================================================================
   CTA STRIP
   ==================================================================== */
.cta-strip {
  background: var(--color-navy);
  padding: 80px 0;
}

.cta-strip-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-strip h2 {
  color: var(--color-white);
  font-size: clamp(26px, 3.5vw, 34px);
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  margin: 18px 0 32px;
  font-size: 16px;
}

.cta-strip .btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}

.cta-strip .btn-primary:hover {
  background: #DBAB55;
}

/* ====================================================================
   CONTACT
   ==================================================================== */
.contact {
  padding: 110px 0;
  background: var(--color-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-inner>* {
  min-width: 0;
}

.contact-lead {
  font-size: 17px;
  color: #555;
  margin: 16px 0 32px;
}

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

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(27, 42, 61, 0.08);
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
}

.contact-value {
  font-size: 17px;
  color: var(--color-navy);
  font-weight: 500;
}

.contact-value[data-placeholder] {
  color: var(--color-terracotta);
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.social-links a {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 2px;
}

.contact-form {
  background: var(--color-cream-deep);
  border-radius: var(--radius-md);
  padding: 36px;
}

.form-row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid rgba(27, 42, 61, 0.15);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 1px;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
  color: var(--color-terracotta);
  min-height: 18px;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer {
  background: var(--color-navy);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 900px) {

  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

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

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

@media (max-width: 720px) {
  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    border-bottom: 1px solid rgba(27, 42, 61, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open {
    max-height: 260px;
  }

  .main-nav a {
    padding: 16px 28px;
    border-bottom: 1px solid rgba(27, 42, 61, 0.06);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(34px, 8vw, 48px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .grout-grid div {
    transition: none;
  }

  .scroll-cue span {
    animation: none;
  }
}

/* ====================================================================
   BROWSE BY ROOM (categories)
   ==================================================================== */
.categories {
  padding: 100px 0;
  background: var(--color-white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px -10px rgba(27, 42, 61, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.category-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.category-card:hover .category-photo {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 42, 61, 0.05) 30%, rgba(15, 20, 28, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 10px;
  text-align: center;
  color: var(--color-white);
}

.category-icon {
  font-size: 26px;
  margin-bottom: 4px;
}

.category-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.category-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Category modal gallery */
.category-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 18, 24, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.category-modal.open {
  display: flex;
}

.category-modal-inner {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.category-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-cream-deep);
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-navy);
}

.category-modal-icon {
  font-size: 30px;
  text-align: center;
  margin: 0;
}

.category-modal-title {
  text-align: center;
  margin: 4px 0 28px;
  font-size: clamp(24px, 3.5vw, 32px);
}

.category-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.category-modal-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.category-modal-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  cursor: zoom-in;
  box-shadow: 0 6px 16px -8px rgba(27, 42, 61, 0.25);
  transition: transform 0.2s ease;
}

.category-modal-photo:hover {
  transform: scale(1.04);
}

.category-modal-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  text-align: center;
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-modal-inner {
    padding: 24px;
    max-height: 90vh;
  }

  .category-modal-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }
}

/* ====================================================================
   ZOOMABLE PHOTOS + LIGHTBOX
   ==================================================================== */
.zoomable {
  cursor: zoom-in;
  position: relative;
}

.zoomable::after {
  content: '\1F50D';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(27, 42, 61, 0.65);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.zoomable:hover::after,
.zoomable:focus-visible::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 18, 24, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: min(90vw, 900px);
  max-height: 78vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--color-white);
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
  .lightbox {
    padding: 20px;
  }

  .lightbox-img {
    max-height: 65vh;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}

.map-embed {
  width: 100%;
  height: 420px;
  margin-top: 80px;
  filter: saturate(0.85);
  position: relative;
}

.map-embed iframe {
  display: block;
}

.map-location-card {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px -6px rgba(27, 42, 61, 0.3);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  filter: saturate(1);
}

.map-location-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.map-location-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-navy);
}

.map-location-address {
  font-size: 12px;
  color: #777;
  line-height: 1.3;
}

.map-location-link {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--color-cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.map-location-link:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

@media (max-width: 600px) {
  .map-embed {
    height: 280px;
    margin-top: 50px;
  }

  .map-location-card {
    max-width: 200px;
    padding: 10px 12px;
    gap: 10px;
    top: 12px;
    left: 12px;
  }

  .map-location-title {
    font-size: 13px;
  }

  .map-location-address {
    font-size: 10.5px;
  }

  .map-location-link {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
}

.map-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.map-about-text {
  max-width: 460px;
  margin: 28px auto 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  text-align: left;
}