@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

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

:root {
  --cream: #faf8f5;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #6b6b6b;
  --light-gray: #e8e4df;
  --border: #ddd8d2;
  --gold: #c9a96e;
  --gold-dark: #b8935a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--black);
  color: rgba(255,255,255,0.72);
  text-align: center;
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 300;
}
.top-bar span { color: var(--gold); }

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0);
  border-bottom: none;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s, height 0.4s ease;
}
header.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
header.scrolled nav ul li a { color: var(--black); text-shadow: none; }
header.scrolled .header-icon { color: var(--black); text-shadow: none; }

/* Inner page header (non-homepage) */
header.inner-page {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
header.inner-page nav ul li a {
  color: var(--black);
  text-shadow: none;
}
header.inner-page .header-icon {
  color: var(--black);
  text-shadow: none;
}

header.inner-page .header-icon:hover {
  color: var(--gold);
}

/* Ensure phone icon is visible */
.header-icon {
  display: inline-flex !important;
}

@media (max-width: 768px) {
  .header-icon {
    padding: 6px 8px;
    color: var(--black) !important; /* Always dark on mobile */
  }
}
header.inner-page .logo img {
  height: 110px;
  margin-top: 5px;
  filter: none;
}

.header-left { display: flex; align-items: center; gap: 40px; }

nav {
  display: flex !important;
  position: relative !important;
  inset: auto !important;
  background: transparent !important;
  z-index: auto !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

nav ul { list-style: none; display: flex; gap: 36px; }
nav ul li { position: relative; }
nav ul li a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
nav ul li a:hover { color: var(--gold); }
nav ul li a.active { color: var(--gold); border-bottom: 1px solid var(--gold); }

nav ul li .dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 999;
}
nav ul li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
nav ul li .dropdown a {
  display: block;
  padding: 8px 24px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray);
}
nav ul li .dropdown a:hover { color: var(--black); }

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo a { display: block; }
.logo img {
  margin-top: 30px;
  height: 150px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: height 0.4s ease;
}
header.scrolled .logo img {
  height: 82px;
  margin-top: 4px;
  filter: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  padding: 4px 8px;
}

.header-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
}

.header-icon:hover { color: var(--gold); }
.icon-svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.btn-primary {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 42px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--black);
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); box-shadow: 0 6px 16px rgba(201,169,110,0.4); }
.btn-outline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 14px 38px;
  background: transparent;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--black);
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-gold {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 15px 38px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ─── HERO (VIDEO BG) ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: -90px;
  padding-top: 200px;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #1a1a1a url('Photos/593615968_122148108290851124_172602234107924646_n.jpg') center/cover no-repeat;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(80,70,60,0.58) 36%, rgba(80,70,60,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 0 80px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(201,169,110,0.9);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,169,110,0.5);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}
.hero h1 em { font-style: italic; font-weight: 300; color: #ffc965; }
.hero p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 400px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: nowrap; align-items: center; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 2;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── MARQUEE BAND ─── */
.marquee-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--sans);
  font-weight: 300;
}
.marquee-dot { color: var(--gold); font-size: 16px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION COMMONS ─── */
section { padding: 100px 60px; }
.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--sans);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gray); }
.section-sub {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.9;
}

/* ─── COLLECTIONS ─── */
.collections-section { background: var(--white); padding: 100px 60px; }
.collections-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.collection-card:first-child { grid-row: span 2; }
.collection-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collection-card:first-child .collection-img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}
.collection-card:hover .collection-img { transform: scale(1.05); }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,15,12,0.68) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s;
}
.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(20,15,12,0.78) 0%, transparent 60%);
}
.collection-category {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  font-family: var(--sans);
  font-weight: 300;
}
.collection-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.collection-link {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.2s, color 0.2s;
}
.collection-link:hover { gap: 16px; color: var(--gold); }
.collection-link::after { content: '→'; }

/* ─── BANNER STRIP ─── */
.banner-strip {
  height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.1s;
}
.banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.60) 0%, rgba(26,26,26,0.35) 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 60px;
}
.banner-content .section-label { justify-content: center; }
.banner-content .section-label::before { display: none; }
.banner-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: 2px;
}
.banner-title em { font-style: italic; font-weight: 300; }

/* ─── PRODUCT CATALOGUE ─── */
.products-section { background: var(--cream); }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card { cursor: pointer; }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 2/3;
  background: var(--light-gray);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* These divs use background-image, so set background sizing to avoid tiling */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
}
.product-card:hover .product-actions { transform: translateY(0); }
.enquire-btn {
  width: 100%;
  padding: 12px 8px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--sans);
  cursor: pointer;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--white);
  transition: all 0.2s;
  font-weight: 400;
}
.enquire-btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.enquire-btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.product-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.3;
}
.product-cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--sans);
  font-weight: 300;
}

/* ─── OUR STORY ─── */
.story-section { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.story-content .section-label::before { display: none; }
.divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

/* ─── TESTIMONIAL SPLIT ─── */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.promo-img {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}
.promo-content {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.promo-content .section-label::before { display: none; }
.testimonial-quote {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--sans);
  font-weight: 300;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 18px; }

/* ─── SERVICES ─── */
.services-section { background: var(--white); text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.service-item { padding: 0 20px; }
.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 26px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
}
.service-text { font-size: 13px; color: var(--gray); font-weight: 300; line-height: 1.85; }

/* ─── GALLERY / INSTAGRAM ─── */
.gallery-section { padding: 0; }
.gallery-header {
  text-align: center;
  padding: 80px 60px 48px;
  background: var(--cream);
}
.gallery-handle {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-top: 8px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(201,169,110,0.28); }
.gallery-overlay svg { opacity: 0; transition: opacity 0.3s; width: 32px; height: 32px; stroke: white; fill: none; stroke-width: 1.5; }
.gallery-item:hover .gallery-overlay svg { opacity: 1; }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: var(--black);
  text-align: center;
  padding: 90px 60px;
}
.newsletter-section .section-label { justify-content: center; color: rgba(255,255,255,0.45); }
.newsletter-section .section-label::before { background: rgba(255,255,255,0.2); }
.newsletter-section .section-title { color: var(--white); margin-bottom: 14px; }
.newsletter-section .section-title em { color: var(--gold); }
.newsletter-section .section-sub { color: rgba(255,255,255,0.5); margin: 0 auto 44px; text-align: center; }
.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* Newsletter via Contact Form 7 — match the dark inline format */
.newsletter-cf7 { max-width: 540px; margin: 0 auto; }
.newsletter-section .wpcf7-form { width: 100%; }
/* Hidden fields fieldset must not take up layout space (inputs still submit) */
.newsletter-section .wpcf7-form .hidden-fields-container { display: none !important; }
/* The <p> that holds the email + submit IS the single row */
.newsletter-section .wpcf7-form > p {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  margin: 0 !important;
  width: 100%;
}
.newsletter-section .wpcf7-form > p > .wpcf7-form-control-wrap {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0;
  display: block;
}
.newsletter-section .wpcf7-form input[type="email"],
.newsletter-section .wpcf7-form input[type="text"] {
  width: 100%;
  height: 100%;
  padding: 16px 22px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.newsletter-section .wpcf7-form input[type="email"]::placeholder,
.newsletter-section .wpcf7-form input[type="text"]::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-section .wpcf7-form input[type="email"]:focus,
.newsletter-section .wpcf7-form input[type="text"]:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.newsletter-section .wpcf7-form input[type="submit"] {
  flex: 0 0 auto;
  width: auto !important; /* override the global contact-form submit width:100% */
  margin: 0 !important;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  border-radius: 0;
}
.newsletter-section .wpcf7-form input[type="submit"]:hover { background: var(--gold-dark); }
.newsletter-section .wpcf7-form .wpcf7-spinner { align-self: center; margin: 0 0 0 10px; }
/* Validation + response messages, below the row */
.newsletter-section .wpcf7-form .wpcf7-response-output {
  margin: 16px 0 0 !important;
  color: rgba(255,255,255,0.85);
  text-align: center;
}
.newsletter-section .wpcf7-not-valid-tip { color: #f0b8b8; font-size: 12px; margin-top: 6px; }

@media (max-width: 480px) {
  .newsletter-section .wpcf7-form > p { flex-direction: column; }
  .newsletter-section .wpcf7-form input[type="submit"] { width: 100%; margin-top: 12px; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 60px 60px;
}
.footer-brand .logo-footer {
  display: block;
  margin-bottom: 20px;
}
.footer-brand .logo-footer img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-brand p { font-size: 13px; color: var(--gray); font-weight: 300; line-height: 1.85; margin-bottom: 28px; }
.footer-address {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  font-family: var(--sans);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* Reusable social icons (footer + contact) */
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-icons a svg { width: 18px; height: 18px; display: block; }
.social-icons a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 11px; color: var(--gray); font-weight: 300; letter-spacing: 0.5px; }
.footer-bottom .gold-text { color: var(--gold); }
.footer-bottom a { color: var(--gold); text-decoration:none; }
/* ─── ENQUIRE MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.65);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(3px);
  padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  padding: 52px 48px 48px;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-gold-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
  font-family: var(--sans);
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { color: var(--black); }
.modal-gown-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 4px 12px;
  margin-bottom: 12px;
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.modal-submit:hover { background: var(--gold-dark); }

/* ─── MOBILE MENU ─── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.menu-toggle:hover { color: var(--gold); }

/* Desktop nav - always visible, horizontal */
nav {
  display: flex;
  position: relative;
  background: transparent;
  padding: 0;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 36px;
}

/* Close button: hidden on desktop */
.mobile-menu-close {
  display: none;
  position: absolute;
  top: 50px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 36px;
  color: var(--black);
  padding: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  z-index: 1600;
}
.mobile-menu-close:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  header { padding: 0 30px; }
  section { padding: 80px 30px; }
  .hero-content { padding: 0 40px; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card:first-child { grid-row: span 1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { padding: 22px 30px; }
  .story-grid { gap: 48px; }
}
@media (max-width: 768px) {
  header { padding: 0 20px; height: 65px; }

  /* Hide desktop nav on mobile */
  nav {
    display: none !important;
  }

  /* Mobile menu: full-screen overlay, shown when .active added via JS */
  nav#mobile-menu.active {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    background: var(--white) !important;
    z-index: 1500 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
    padding: 0 !important;
  }

  nav#mobile-menu.active ul {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  nav#mobile-menu.active ul li a {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    color: var(--black);
    text-shadow: none !important;
    letter-spacing: 2px;
  }

  nav#mobile-menu.active ul li a:hover { color: var(--gold); }

  /* Show close button inside active mobile menu */
  nav#mobile-menu.active .mobile-menu-close {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: var(--black); /* Always dark on mobile (white header) */
  }

  /* Hide the header's Enquire Now button on mobile — keep phone icon only.
     Scoped to the header so product/hero/banner .btn-primary buttons still show. */
  header .btn-primary {
    display: none !important;
  }
  .hero-content { padding: 0 24px; max-width: 100%; }
  .collections-section { padding: 60px 20px; }
  .collections-grid { grid-template-columns: 1fr; gap: 20px; }
  /* First card is featured/taller on desktop — make it uniform on mobile */
  .collection-card:first-child .collection-img {
    aspect-ratio: 3/4;
    min-height: 0;
    height: auto;
  }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .promo-split { grid-template-columns: 1fr; }
  .promo-img { min-height: 320px; }
  .promo-content { padding: 50px 30px; }
  .services-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .newsletter-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; padding: 50px 20px 40px; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; padding: 20px; text-align: center; }
  section { padding: 60px 20px; }
  .collections-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .banner-strip { height: 400px; }
  .modal-box { padding: 44px 24px 36px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }

  /* Improve mobile responsiveness for new sections */
  header { padding: 0 16px; }
  section { padding: 40px 16px; }

  /* Ensure divs with inline padding use mobile spacing */
  section [style*="padding: 60px"] {
    padding: 40px 16px !important;
  }
  section [style*="padding: 100px"] {
    padding: 60px 16px !important;
  }

  /* Page hero responsive */
  [style*="height: 300px"] { margin-top: -65px !important; padding-top: 160px !important; }

  /* FAQ items mobile */
  .faq-item { padding: 20px 0 !important; }
  .faq-item > div:first-child { flex-direction: column; align-items: flex-start; }

  /* Contact form mobile */
  .contact-info, .contact-form { max-width: 100%; }

  /* Team grid mobile */
  [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }

  /* Gallery - ensure mobile friendly */
  .gallery-grid { gap: 12px; }

  /* Newsletter form mobile */
  .newsletter-form {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .newsletter-form input { width: 100%; }
  .newsletter-form button { width: 100%; }

  /* Header icon and button responsive */
  .header-right { gap: 12px; }
  .btn-primary { padding: 12px 28px; font-size: 9px; }

  /* Footer responsive */
  .footer-socials a { margin-right: 12px; }
}

/* Ensure gallery items are always visible */
.gallery-item {
  min-height: 250px;
}

/* Mobile: Always show product actions on touch devices */
@media (hover: none) and (pointer: coarse) {
  .product-actions {
    transform: translateY(0) !important;
  }
  .product-img-wrap {
    position: relative;
  }
}

/* Filter section responsive */
.filter-section {
  display: grid !important;
  grid-template-columns: 240px 1fr !important;
  gap: 52px !important;
}

@media (max-width: 1100px) {
  .filter-section {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .filter-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .filter-section {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .filter-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .filter-section {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .filter-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* FILTER FLOATING BUTTON (Mobile Only) */
.filter-fab {
  display: none !important;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #1a1a1a;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
}

.filter-fab:hover {
  background: var(--gold);
  box-shadow: 0 6px 16px rgba(201,169,110,0.4);
  transform: scale(1.05);
}

.filter-fab-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

/* Filter modal */
.filter-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.65);
  z-index: 1000;
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.filter-modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  align-items: flex-end;
}

.filter-modal-content {
  background: white;
  width: 100%;
  max-height: 80vh;
  border-radius: 16px 16px 0 0;
  padding: 32px 20px;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.filter-modal.active .filter-modal-content {
  transform: translateY(0);
}

.filter-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.filter-modal-header h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--black);
  margin: 0;
}

.filter-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-modal-close:hover {
  color: var(--black);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-option {
  padding: 12px 16px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--black);
  transition: all 0.2s;
  text-align: left;
}

.filter-option:hover {
  background: #f5f0eb;
  border-color: var(--gold);
}

.filter-option.active {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

/* Category filter buttons responsive */
@media (max-width: 768px) {
  /* Hide all filter elements on mobile */
  .product-filters,
  .collection-filters,
  .filter-sidebar {
    display: none !important;
  }

  /* Show floating filter button */
  .filter-fab {
    display: flex !important;
  }

  /* Make filter section full width on mobile */
  .filter-section {
    grid-template-columns: 1fr !important;
  }

  section [style*="display: flex"] > div:first-child {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 480px) {
  section [style*="display: flex; gap: 12px"] button {
    padding: 8px 12px !important;
    font-size: 8px !important;
  }
}

/* Fix product grid on inline styles */
@media (max-width: 1200px) {
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  div[style*="grid-template-columns: 240px 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns: 240px 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Responsive gallery — horizontal swipe slider on mobile */
@media (max-width: 768px) {
  .gallery-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    padding: 0 20px 14px;
    /* hide scrollbar */
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; height: 0; }

  .gallery-item {
    flex: 0 0 72% !important;
    min-height: 0 !important;
    aspect-ratio: 1 !important;
    scroll-snap-align: start;
  }
  /* keep the tap-to-zoom overlay icon visible on touch */
  .gallery-item .gallery-overlay svg { opacity: 0.9; }
}

/* ─── PRODUCT DETAIL PAGE — MASONRY GALLERY ─── */
.pd-masonry {
  column-count: 3;
  column-gap: 16px;
}
/* Single image (featured only) — center it instead of left-aligning in a column.
   !important so it isn't overridden by the responsive .pd-masonry column-count rules. */
.pd-masonry-single {
  column-count: 1 !important;
  max-width: 460px;
  margin: 0 auto;
}
.pd-masonry-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--light-gray);
}
.pd-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pd-masonry-item:hover img { transform: scale(1.04); }
.pd-masonry-zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26,26,26,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pd-masonry-item:hover .pd-masonry-zoom { opacity: 1; }

@media (max-width: 900px) {
  .pd-masonry { column-count: 2; }
}
@media (max-width: 560px) {
  .pd-masonry { column-count: 2; column-gap: 10px; }
  .pd-masonry-item { margin-bottom: 10px; }
}

/* ─── COLLECTION DETAIL PAGE ─── */
@media (max-width: 900px) {
  .collection-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  /* Show the image first, then the info */
  .collection-detail-grid > div:last-child { order: -1; }
}

/* Featured Pieces — large product grid (Anna Campbell style) */
.collection-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 36px;
}
.collection-product-card:hover .product-img { transform: scale(1.05); }
.collection-product-card:hover .product-actions { transform: translateY(0); }
@media (max-width: 900px) {
  .collection-products-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 560px) {
  .collection-products-grid { grid-template-columns: 1fr; gap: 32px; max-width: 420px; margin: 0 auto; }
}

/* ─── CLICKABLE CARDS (anchor variants) ─── */
a.collection-card {
  color: inherit;
}
a.gallery-item {
  display: block;
}

/* ─── CONTACT FORM 7 — match site form styling ─── */
.wpcf7-form p {
  margin-bottom: 16px;
}
.wpcf7-form label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--black);
  font-weight: 400;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
  border-radius: 0;
  appearance: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.wpcf7-form textarea {
  resize: vertical;
  min-height: 130px;
}
.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"] {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  border-radius: 0;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button[type="submit"]:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
/* CF7 validation / response messaging */
.wpcf7 .wpcf7-spinner { margin: 12px auto 0; display: block; }
.wpcf7-response-output {
  font-family: var(--sans);
  font-size: 13px;
  margin-top: 16px !important;
  padding: 12px 16px !important;
  border-radius: 0;
}
.wpcf7-not-valid-tip {
  font-family: var(--sans);
  font-size: 12px;
  color: #d33;
}

/* ─────────────────────────────────────────────
   INNER PAGES (page.php) — MOBILE LAYOUT
   These pages use inline grid/padding styles that
   do not collapse on their own. Force them here.
   ───────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Two-column inner layouts (About text+image, Contact info+form) → single column */
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  /* Three-column inner layouts (Team, Reviews) → single column */
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* Trim the large inline section padding */
  section[style*="padding: 100px 60px"] {
    padding: 56px 20px !important;
  }
  section[style*="padding: 60px"] {
    padding: 40px 20px !important;
  }
  /* Page hero heading: reduce side padding */
  div[style*="height: 300px"] h1,
  div[style*="height: 400px"] h1 {
    padding: 0 24px !important;
  }
  .hero-scroll {
    position: absolute;
    bottom: 0; }
    .hero-btns .btn-outline{ display:none;}
    .logo img {
    margin-top: 20px;
    height: 100px; }
    header.inner-page .logo img {
    height: 75px; }
}

@media (max-width: 480px) {
  section[style*="padding: 100px 60px"] {
    padding: 44px 16px !important;
  }
  section[style*="padding: 60px"] {
    padding: 32px 16px !important;
  }
  /* Map height a touch shorter on small phones */
  div[style*="height: 400px"][style*="overflow: hidden"] {
    height: 300px !important;
  }
}
