:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --text: #474747;
  --text-soft: #666666;
  --accent: #098e9b;
  --accent-dark: #07717b;
  --border: rgba(71, 71, 71, 0.12);
  --shadow: 0 18px 36px rgba(34, 34, 34, 0.08);
  --radius: 8px;
  --header-height: 92px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(9, 142, 155, 0.28);
  outline-offset: 3px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.95em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner,
.section,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-room {
  color: var(--accent);
}

.brand-tiques {
  color: var(--text);
}

.desktop-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 0.95rem;
}

.desktop-nav a,
.footer-links a {
  color: var(--text-soft);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary {
  background: transparent;
  color: var(--accent);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(9, 142, 155, 0.08);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 28px;
}

.hero-copy {
  max-width: none;
  padding-top: 8px;
}

.eyebrow,
.section-tag {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  max-width: none;
}

.hero-text,
.section-heading p,
.intro p {
  font-size: 1.05rem;
  color: var(--text-soft);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-list span {
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  font-size: 0.95rem;
}

.video-shell {
  position: relative;
  width: 100%;
  margin-top: 28px;
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  background: #dfe8ea;
  box-shadow: var(--shadow);
}

.video-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  max-width: min(360px, calc(100% - 48px));
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.section {
  padding: 40px 0 72px;
}

section[id] {
  scroll-margin-top: 110px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.split .feature-list {
  margin-bottom: 28px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-intro {
  margin-top: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.location-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.service-grid article {
  padding: 22px;
}

.service-grid h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.service-grid p,
.location-card p,
.contact-card p,
address {
  margin: 0;
  color: var(--text-soft);
}

.location-card,
.contact-card {
  padding: 24px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

address {
  font-style: normal;
  margin-top: 12px;
}

.contact-card {
  align-items: start;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: stretch;
}

.location-card {
  align-items: center;
  justify-content: flex-start;
}

.map-embed {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 22px 0 36px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
  justify-content: end;
  justify-items: start;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-brand {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 700;
}

.site-footer p,
.site-footer a {
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-popover-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  cursor: pointer;
}

.footer-popover-toggle:hover,
.footer-popover-toggle:focus-visible {
  color: var(--accent);
}

.copyright {
  margin: 0;
  color: var(--text-soft);
}

.footer-popovers {
  position: relative;
  width: min(320px, 100%);
}

.footer-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: 320px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.footer-popover p {
  margin: 0;
}

.footer-popover p + p {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .hero-copy {
    padding-top: 0;
  }

  .gallery,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .desktop-nav,
  .header-actions .button-secondary {
    display: none;
  }

  .brand {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    max-width: none;
  }

  .location-card,
  .contact-card {
    padding: 18px;
  }

  .video-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .gallery,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .location-card,
  .contact-card {
    flex-direction: column;
    align-items: stretch;
  }

  .location-layout {
    grid-template-columns: 1fr;
  }

  .map-embed iframe {
    height: 320px;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .button {
    flex: 1 1 180px;
  }
}

@media (max-width: 480px) {
  .header-inner,
  .section,
  .site-footer,
  .hero {
    width: min(100% - 24px, 1120px);
  }

  .hero-actions,
  .header-actions {
    width: 100%;
  }

  .hero-actions .button,
  .header-actions .button,
  .location-card .button {
    width: 100%;
  }

  .hero-text,
  .section-heading p,
  .intro p {
    font-size: 1rem;
  }

  .footer-popovers,
  .footer-popover {
    width: 100%;
  }
}
