/* =========================================================================
   Bloomora Cafe: styles.css
   Single stylesheet for all pages (no per-page CSS files, no inline styles).
   ========================================================================= */

/* -------------------------------------------------------------------------
   Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* Palette: sampled and refined from the real logo file (images/bloomora-logo.jpg) */
  --bloomora-sage: #86ad74;      /* brand sage, sampled from logo background: header, footer, decorative */
  --sage-deep: #5f7f4d;          /* deepened sage: primary buttons, passes AA with white text */
  --ivory-bloom: #fbf8f1;        /* warm off-white page background */
  --charcoal-moss: #23281f;      /* near-black, green undertone: body text */
  --dusty-petal: #c98a7b;        /* muted terracotta-rose accent */
  --dusty-petal-deep: #a6614f;   /* deepened accent: secondary buttons, passes AA with white text */
  --sage-tint: #e7eee0;          /* light tint: card backgrounds, dividers */
  --warm-gold: #c9a227;          /* reserved for Popular / most-liked badges only */

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rhythm */
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 8px 24px -12px rgba(35, 40, 31, 0.25);
  --shadow-lift: 0 16px 32px -14px rgba(35, 40, 31, 0.32);
  --max-width: 1180px;

  --motion-fast: 0.18s;
  --motion-med: 0.32s;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory-bloom);
  color: var(--charcoal-moss);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--charcoal-moss);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

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

button {
  font-family: inherit;
}

[hidden] {
  display: none !important;
}

/* Visible focus states everywhere, never suppressed */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
input:focus-visible {
  outline: 3px solid var(--dusty-petal-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  background: var(--charcoal-moss);
  color: var(--ivory-bloom);
  padding: 0.75em 1.25em;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top var(--motion-fast) var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sage-deep);
  color: var(--ivory-bloom);
}

.btn-primary:hover {
  box-shadow: var(--shadow-soft);
  background: #526c42;
}

.btn-secondary {
  background: transparent;
  border-color: var(--charcoal-moss);
  color: var(--charcoal-moss);
}

.btn-secondary:hover {
  background: var(--charcoal-moss);
  color: var(--ivory-bloom);
}

.btn-accent {
  background: var(--dusty-petal-deep);
  color: var(--ivory-bloom);
}

.btn-accent:hover {
  box-shadow: var(--shadow-soft);
  background: #8f5343;
}

.btn-block {
  width: 100%;
}

/* -------------------------------------------------------------------------
   Header / Nav
   ------------------------------------------------------------------------- */
.site-header {
  background: var(--bloomora-sage);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px -6px rgba(35, 40, 31, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--charcoal-moss);
}

.brand img {
  height: 52px;
  width: 52px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--bloomora-sage);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.1;
  color: var(--charcoal-moss);
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #35422a;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--charcoal-moss);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle .bar {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--charcoal-moss);
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--charcoal-moss);
  transition: transform var(--motion-fast) var(--ease);
}

.nav-toggle .bar::before {
  top: -6px;
}

.nav-toggle .bar::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .bar::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(35, 40, 31, 0.35);
  padding: 0.35em 0.1em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: #ffffff;
  transition: right var(--motion-fast) var(--ease);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 700;
  text-decoration: none;
  color: var(--charcoal-moss);
  background: var(--ivory-bloom);
  padding: 0.5em 1em;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-phone:hover {
  background: var(--charcoal-moss);
  color: var(--ivory-bloom);
}

/* Social icons in the nav only show in the mobile full-screen menu;
   desktop keeps them in the footer instead, to stay uncluttered.
   (Selector kept more specific than .social-icons so this hide rule
   always wins regardless of source order.) */
.main-nav .nav-socials {
  display: none;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 51;
  }

  /* Full-screen popup menu: fixed over the whole viewport, sitting just
     below the sticky header (z-index) so the close (X) button in the
     header stays visible and usable the whole time it's open. */
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 49;
    background: var(--bloomora-sage);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding-top: calc(78px + env(safe-area-inset-top, 0px));
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--motion-med) var(--ease), transform var(--motion-med) var(--ease), visibility 0s linear var(--motion-med);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--motion-med) var(--ease), transform var(--motion-med) var(--ease), visibility 0s linear 0s;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1rem;
  }

  .nav-links a {
    padding: 1em 0;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .nav-phone {
    margin: 1rem var(--gutter);
    justify-content: center;
  }

  .main-nav .nav-socials {
    display: flex;
    justify-content: center;
    margin: 0.5rem var(--gutter) 0;
  }
}

/* -------------------------------------------------------------------------
   Signature floral element
   ------------------------------------------------------------------------- */
.floral-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  color: var(--bloomora-sage);
  opacity: 0.85;
}

.floral-divider img {
  height: 56px;
  width: auto;
}

.hero-floral {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-floral img {
  height: 130%;
  width: auto;
  max-width: none;
  opacity: 0.16;
  transform: translateX(18%) rotate(6deg);
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--sage-tint) 0%, var(--ivory-bloom) 78%);
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5rem);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 0.4em;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #3a4030;
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Page header used on interior pages (menu/events/contact) */
.page-header {
  background: var(--sage-tint);
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}

.page-header .hero-inner {
  max-width: 760px;
}

/* -------------------------------------------------------------------------
   Sections (scroll reveal)
   ------------------------------------------------------------------------- */
.section {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.section-tight {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.section-alt {
  background: var(--sage-tint);
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.section-header p {
  color: #3a4030;
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .highlight-card:hover,
  .offer-card:hover,
  .menu-category:hover {
    transform: none;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

/* -------------------------------------------------------------------------
   Highlight strip (home, quick menu items)
   ------------------------------------------------------------------------- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

@media (max-width: 540px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

.highlight-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--motion-med) var(--ease), box-shadow var(--motion-med) var(--ease);
  display: flex;
  flex-direction: column;
}

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

.highlight-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sage-tint);
}

.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-body {
  padding: 1.1rem 1.2rem 1.3rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.highlight-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25em;
}

.highlight-price {
  margin-top: auto;
  font-weight: 700;
  color: var(--sage-deep);
  padding-top: 0.5rem;
}

.menu-cta {
  margin-top: 2.25rem;
  text-align: center;
}

/* -------------------------------------------------------------------------
   Badges
   ------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 0.65em;
  border-radius: 999px;
  background: var(--warm-gold);
  color: var(--charcoal-moss);
}

.badge-rank {
  background: var(--charcoal-moss);
  color: var(--warm-gold);
}

/* -------------------------------------------------------------------------
   More than coffee / events teaser (home)
   ------------------------------------------------------------------------- */
.split-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (max-width: 860px) {
  .split-panel {
    grid-template-columns: 1fr;
  }
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}

.split-panel.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

@media (max-width: 860px) {
  .split-panel.reverse {
    grid-template-columns: 1fr;
  }

  .split-panel.reverse .split-media {
    order: -1;
  }
}

/* -------------------------------------------------------------------------
   Trust strip
   ------------------------------------------------------------------------- */
.trust-strip {
  background: var(--charcoal-moss);
  color: var(--ivory-bloom);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 2rem;
}

.trust-rating {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.trust-rating strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--warm-gold);
}

.trust-rating span {
  font-size: 0.95rem;
  color: #cfd6c6;
}

.trust-note {
  font-size: 0.85rem;
  color: #a9b39c;
  max-width: 40ch;
}

/* -------------------------------------------------------------------------
   Location snapshot (home) + contact page facts
   ------------------------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3rem);
}

@media (max-width: 860px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.fact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fact-list dt {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sage-deep);
  margin-bottom: 0.2em;
}

.fact-list dd {
  margin: 0;
  font-size: 1.05rem;
}

.fact-list a {
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--dusty-petal);
}

.fact-list a:hover {
  color: var(--dusty-petal-deep);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hours-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 1rem 1.25rem 0.5rem;
  font-weight: 600;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.7rem 1.25rem;
  border-top: 1px solid var(--sage-tint);
  font-size: 0.98rem;
}

.hours-table th {
  font-weight: 600;
  color: var(--charcoal-moss);
}

.hours-table td {
  color: #4a5140;
}

/* -------------------------------------------------------------------------
   Menu page
   ------------------------------------------------------------------------- */
.order-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 2px dashed var(--sage-deep);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.order-callout p {
  margin: 0;
  font-weight: 600;
}

.order-callout small {
  display: block;
  font-weight: 400;
  color: #5a614d;
  margin-top: 0.2em;
}

.menu-banner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 3rem;
}

.menu-banner img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-category {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow var(--motion-med) var(--ease);
}

.menu-category:hover {
  box-shadow: var(--shadow-lift);
}

.category-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal-moss);
}

.category-toggle:hover {
  background: var(--sage-tint);
}

.category-toggle .count {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: #5a614d;
  margin-left: 0.5em;
}

.category-toggle .chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  transition: transform var(--motion-med) var(--ease);
}

.category-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.category-panel {
  height: 0;
  overflow: hidden;
  transition: height var(--motion-med) var(--ease);
}

.category-panel-inner {
  padding: 0 1.4rem 1.5rem;
  border-top: 1px solid var(--sage-tint);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sage-tint);
}

.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item:first-child {
  padding-top: 1.25rem;
}

.item-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 0.15em;
}

.item-name-row h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  margin: 0;
}

.item-desc {
  color: #5a614d;
  font-size: 0.92rem;
  margin: 0;
  max-width: 52ch;
}

.item-price {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--sage-deep);
  white-space: nowrap;
  padding-top: 0.1em;
}

/* -------------------------------------------------------------------------
   Events page
   ------------------------------------------------------------------------- */
.events-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 700px) {
  .events-media-grid {
    grid-template-columns: 1fr;
  }
}

.events-media-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.events-media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.events-media-grid figcaption {
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  color: #5a614d;
  background: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

.offer-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--motion-med) var(--ease), box-shadow var(--motion-med) var(--ease);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.offer-card h3 {
  margin-bottom: 0.4em;
}

.to-confirm-note {
  margin-top: 2rem;
  background: var(--sage-tint);
  border-left: 4px solid var(--sage-deep);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: #3a4030;
}

.to-confirm-note strong {
  color: var(--charcoal-moss);
}

.enquiry-cta {
  background: var(--charcoal-moss);
  color: var(--ivory-bloom);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.enquiry-cta h2 {
  color: var(--ivory-bloom);
}

.enquiry-cta p {
  color: #cfd6c6;
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.enquiry-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--warm-gold);
  text-decoration: none;
  padding: 0.3em 0.7em;
  border: 2px solid var(--warm-gold);
  border-radius: 999px;
}

.enquiry-phone:hover {
  background: var(--warm-gold);
  color: var(--charcoal-moss);
}

/* -------------------------------------------------------------------------
   Contact page
   ------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.phone-note {
  background: var(--sage-tint);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  margin-top: 1.5rem;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--bloomora-sage);
  color: var(--charcoal-moss);
  padding-block: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.footer-brand img {
  height: 46px;
  width: 46px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7em;
}

.footer-col address {
  font-style: normal;
  line-height: 1.7;
}

.footer-col a {
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ivory-bloom);
  color: var(--charcoal-moss);
  transition: transform var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease);
}

.social-icons a:hover {
  background: var(--charcoal-moss);
  color: var(--ivory-bloom);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(35, 40, 31, 0.18);
  font-size: 0.82rem;
  color: #35422a;
}

/* -------------------------------------------------------------------------
   Utilities
   ------------------------------------------------------------------------- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 2rem;
}
