: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: 34px 0 18px;
}

.hero-copy {
  max-width: 1100px;
  padding-top: 0;
  text-align: center;
}

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

.hero h1 {
  font-size: clamp(1.9rem, 3.9vw, 3.75rem);
  line-height: 1.05;
  max-width: 1100px;
  margin-inline: auto;
  color: var(--accent);
}

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

.hero-text {
  max-width: 860px;
  margin: 14px auto 0;
  font-size: 1.2rem;
}

.section-heading .section-tag {
  margin: 0 0 14px;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0;
}

.section-heading .section-tag::first-letter {
  color: inherit;
}

.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: 0 0 20px;
}

.video-shell video {
  width: 100%;
  aspect-ratio: 20 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  background: #dfe8ea;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(34, 34, 34, 0.08);
}

.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 .section-heading {
  max-width: none;
}

.split .section-heading p {
  max-width: none;
}

.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;
  position: relative;
  box-shadow: 0 10px 24px rgba(34, 34, 34, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfc 100%);
}

.service-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(9, 142, 155, 0.18) 100%);
}

.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: 24px;
  }

  .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 h1 {
    font-size: clamp(1.78rem, 9.2vw, 2.65rem);
  }

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

  .section-heading .section-tag {
    font-size: 1.3rem;
  }

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