:root {
  --ink: #101719;
  --muted: #5d6968;
  --paper: #f6f4ec;
  --mist: #e4efe9;
  --water: #1f6f78;
  --teal: #0f4d54;
  --wood: #b8793f;
  --sand: #e7d1aa;
  --night: #071011;
  --line: rgba(16, 23, 25, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(246, 244, 236, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  font-size: 30px;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--water);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.2em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

.nav-call {
  padding: 11px 16px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
  background: var(--mist);
}

.hero-media {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(7, 16, 17, 0.08), rgba(7, 16, 17, 0.04)),
    url("assets/real/fins-bar-interior.jpg") center / cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 118px clamp(24px, 5vw, 76px) 60px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--water);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 6.8vw, 104px);
}

h2 {
  font-size: clamp(38px, 5vw, 76px);
}

h3 {
  margin: 0;
  font-size: 24px;
}

.lead,
.intro-copy p,
.section-heading p,
.image-feature p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

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

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

.lake-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--night);
  color: #fff;
}

.lake-strip div {
  min-height: 138px;
  padding: 32px clamp(20px, 4vw, 60px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

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

.lake-strip strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.lake-strip span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 96px);
  background: var(--paper);
}

.intro-copy {
  align-self: center;
}

.intro-copy p {
  max-width: 720px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.feature-list span {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--teal);
  font-weight: 900;
}

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

figcaption {
  padding: 18px 20px;
  color: var(--muted);
  font-weight: 800;
}

.menu-section {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 96px);
  background: var(--sand);
}

.section-heading {
  max-width: 980px;
}

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

.menu-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  background: #fffaf0;
  border: 1px solid rgba(31, 111, 120, 0.18);
  box-shadow: 0 20px 60px rgba(7, 16, 17, 0.08);
}

.menu-grid h3 {
  color: var(--teal);
}

.menu-grid p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 780;
  line-height: 1.35;
}

.menu-grid p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-grid strong {
  color: var(--wood);
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  background: var(--night);
  color: #fff;
}

.image-feature img {
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.image-feature div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 90px);
}

.image-feature .eyebrow {
  color: var(--sand);
}

.image-feature h2 {
  color: #fff;
  font-size: clamp(36px, 4.5vw, 66px);
}

.image-feature p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 620px;
}

.image-feature .button {
  align-self: flex-start;
  margin-top: 26px;
  border-color: var(--sand);
  background: var(--sand);
  color: var(--ink);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  background: #fff;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 90px);
}

.visit-copy h2 {
  font-size: clamp(36px, 4.5vw, 66px);
}

.visit-photo {
  min-height: 600px;
  background: url("assets/real/fins-cafe-service.jpg") center / cover;
}

dl {
  display: grid;
  gap: 24px;
  margin: 34px 0 0;
}

dt {
  color: var(--water);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.35;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 60px 20px;
  background: var(--night);
  color: #fff;
  text-align: center;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.footer-brand span {
  color: var(--sand);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
  font-size: 20px;
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.footer-links a {
  min-width: 92px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.footer small {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
  }

  .hero,
  .intro-section,
  .image-feature,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 58svh;
  }

  .hero-copy {
    padding-top: 48px;
  }

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

  .image-feature img,
  .visit-photo {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  nav a:not(.nav-call) {
    display: none;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .lake-strip,
  .menu-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

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

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

  .menu-grid p {
    grid-template-columns: 1fr;
  }
}
