:root {
  --harbour-blue: #006aa6;
  --deep-blue: #014a70;
  --sign-gold: #e6c84e;
  --tomato-red: #b9362b;
  --cream: #fff8ea;
  --porcelain: #ffffff;
  --graphite: #30302e;
  --fog: #686861;
  --line: rgba(48, 48, 46, 0.12);
  --shadow-soft: 0 18px 45px rgba(25, 39, 46, 0.12);
  --shadow-panel: 0 1px 0 rgba(48, 48, 46, 0.08), 0 12px 30px rgba(48, 48, 46, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.625;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.88), rgba(255, 248, 234, 0.96)),
    url("assets/venice-water-bg.jpg") center top / cover no-repeat;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--tomato-red);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 14px;
  color: var(--porcelain);
  background: var(--deep-blue);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(48, 48, 46, 0.08);
}

.topbar,
.main-nav,
.hero,
.trust-strip,
.section,
.story-band,
.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0 14px;
}

.brand {
  display: block;
  flex: 0 1 330px;
}

.brand img {
  width: min(330px, 100%);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.phone-link {
  display: grid;
  min-height: 54px;
  min-width: 190px;
  padding: 8px 14px;
  color: var(--deep-blue);
  text-decoration: none;
  border: 1px solid rgba(0, 106, 166, 0.22);
  border-radius: var(--radius-md);
  background: var(--porcelain);
}

.phone-link span {
  color: var(--fog);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.phone-link strong {
  font-size: 17px;
  line-height: 24px;
}

.phone-link--primary {
  color: var(--graphite);
  background: var(--sign-gold);
  border-color: var(--sign-gold);
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  padding: 0 0 16px;
}

.main-nav a {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.main-nav a:hover {
  background: rgba(0, 106, 166, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 48px;
  padding: 72px 0 56px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--deep-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11.5em;
  margin-bottom: 20px;
  color: var(--graphite);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--graphite);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 730;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--graphite);
  font-size: 20px;
  font-weight: 720;
  line-height: 28px;
  letter-spacing: 0;
}

.hero__lead,
.section__intro p,
.story-band p,
.contact-card p {
  max-width: 66ch;
  color: var(--fog);
}

.hero__lead {
  max-width: 54ch;
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-panel);
}

.button--primary {
  color: var(--graphite);
  background: var(--sign-gold);
  border-color: var(--sign-gold);
}

.button--secondary {
  color: var(--deep-blue);
  background: var(--porcelain);
  border-color: rgba(0, 106, 166, 0.28);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.quick-facts div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.quick-facts dt {
  color: var(--deep-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 3px 0 0;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 650;
  line-height: 22px;
}

.hero__media {
  position: relative;
  min-height: 540px;
}

.hero__photo {
  position: absolute;
  object-fit: cover;
  border: 8px solid var(--porcelain);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hero__photo--large {
  top: 0;
  right: 0;
  width: 82%;
  aspect-ratio: 1 / 1;
}

.hero__photo--sign {
  bottom: 52px;
  left: 0;
  width: 48%;
  aspect-ratio: 1 / 1;
}

.hero__photo--view {
  right: 28px;
  bottom: 0;
  width: 50%;
  aspect-ratio: 1.15 / 1;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 32px;
  background: var(--deep-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

.trust-strip div {
  min-height: 108px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--porcelain);
  font-size: 17px;
  line-height: 24px;
}

.trust-strip span {
  margin-top: 6px;
  color: #d9eef6;
  font-size: 14px;
  line-height: 22px;
}

.section {
  padding: 64px 0;
}

.section__intro {
  max-width: 820px;
  margin-bottom: 32px;
}

.section__intro--narrow {
  max-width: 620px;
}

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

.menu-card {
  min-height: 250px;
  padding: 22px;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-top: 5px solid var(--sign-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
}

.menu-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--tomato-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
}

.menu-card p,
.service-list p,
.hours-grid p,
.site-footer p {
  color: var(--fog);
}

.experience {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 48px;
}

.experience__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.service-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.service-list article {
  padding-left: 18px;
  border-left: 4px solid var(--sign-gold);
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  padding: 40px;
  color: var(--porcelain);
  background: linear-gradient(135deg, var(--deep-blue), var(--harbour-blue));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.story-band .eyebrow,
.story-band h2,
.story-band p {
  color: var(--porcelain);
}

.story-band p {
  margin-bottom: 0;
  color: #eaf6fa;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 40px;
  padding: 36px;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.contact-details {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  font-style: normal;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.contact-details strong {
  font-size: 20px;
  line-height: 28px;
}

.contact-details a {
  color: var(--deep-blue);
  font-weight: 700;
}

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

.hours-grid div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.hours-grid h3 {
  font-size: 17px;
  line-height: 24px;
}

.hours-grid p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, auto);
  gap: 32px;
  align-items: center;
  padding: 40px 0 96px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 210px;
  margin-bottom: 10px;
}

.site-footer p {
  max-width: 34ch;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: var(--deep-blue);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.contact-details a:hover {
  text-decoration: underline;
}

.mobile-callbar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 4;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.mobile-callbar a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  background: var(--sign-gold);
  border-radius: var(--radius-sm);
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
  }

  .hero,
  .experience,
  .story-band,
  .contact-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    padding-top: 48px;
  }

  .hero__media {
    min-height: 420px;
  }

  .trust-strip,
  .menu-grid,
  .gallery-grid,
  .hours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card {
    min-height: auto;
  }

  .site-footer {
    align-items: start;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-bottom: 82px;
  }

  .topbar,
  .main-nav,
  .hero,
  .trust-strip,
  .section,
  .story-band,
  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .topbar {
    display: grid;
    gap: 16px;
    padding-top: 16px;
  }

  .brand img {
    width: min(270px, 100%);
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .phone-link {
    min-width: 0;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 2px;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  h1 {
    max-width: 100%;
  }

  .hero__actions,
  .contact-actions {
    display: grid;
  }

  .quick-facts,
  .trust-strip,
  .menu-grid,
  .gallery-grid,
  .hours-grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-height: 0;
  }

  .hero__photo {
    position: static;
    width: 100%;
    border-width: 5px;
  }

  .hero__photo--large {
    grid-column: 1 / -1;
    aspect-ratio: 1.45 / 1;
  }

  .hero__photo--sign,
  .hero__photo--view {
    aspect-ratio: 1 / 1;
  }

  .trust-strip div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 48px 0;
  }

  .story-band,
  .contact-card {
    padding: 24px;
  }

  .gallery-grid img {
    aspect-ratio: 1.3 / 1;
  }

  .site-footer {
    padding-bottom: 116px;
  }

  .mobile-callbar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
