:root {
  --ink: #151819;
  --deep: #23383a;
  --teal: #49696d;
  --sea: #91aaad;
  --ivory: #f2eedb;
  --sand: #d9d0b9;
  --gold: #8a7247;
  --paper: #fbf7e9;
  --white: #fffdf6;
  --shadow: 0 18px 45px rgba(21, 24, 25, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 12px clamp(16px, 4vw, 54px);
  background: rgba(251, 247, 233, .94);
  border-bottom: 1px solid rgba(35, 56, 58, .16);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--deep);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand small {
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: .72rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-family: Arial, sans-serif;
  font-size: .88rem;
  color: #344244;
}

.nav a {
  padding: 8px 0;
}

.header-whatsapp,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.header-whatsapp {
  padding: 10px 18px;
  color: var(--white);
  background: var(--deep);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 78px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 24, 25, .82), rgba(35, 56, 58, .46), rgba(21, 24, 25, .28)),
    linear-gradient(0deg, rgba(21, 24, 25, .5), rgba(21, 24, 25, .04) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 32px));
  margin-left: clamp(16px, 8vw, 112px);
  padding: 62px 0 82px;
}

.hero-logo {
  width: clamp(126px, 18vw, 196px);
  height: clamp(126px, 18vw, 196px);
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(242, 238, 219, .86);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sand);
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.8rem, 10vw, 8.4rem);
  text-transform: uppercase;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--deep);
}

p {
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 28px;
  color: #fff9e6;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

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

.button {
  padding: 12px 20px;
  border: 1px solid transparent;
}

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

.button.secondary {
  color: var(--deep);
  background: var(--ivory);
}

.button.inline {
  margin-top: 10px;
}

.section-band {
  padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 54px);
}

.section-band.light {
  background: var(--ivory);
}

.section-band.dark-band {
  color: var(--white);
  background: var(--deep);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
}

.intro p,
.kitchen p,
.section-heading p {
  max-width: 690px;
}

.image-link {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(35, 56, 58, .2);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.image-link::after,
.gallery-grid a::after {
  content: "WhatsApp";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(35, 56, 58, .88);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: .75rem;
  font-weight: 700;
}

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

.section-heading {
  margin-bottom: 28px;
}

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

.menu-tile {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(35, 56, 58, .36), rgba(21, 24, 25, .94)),
    url("../images/cochym-waterfront-market.jpeg") center / cover;
  border-radius: 6px;
  overflow: hidden;
}

.menu-tile:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(35, 56, 58, .32), rgba(21, 24, 25, .94)), url("../images/cochym-spice-quay.jpeg");
}

.menu-tile:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(35, 56, 58, .32), rgba(21, 24, 25, .94)), url("../images/cochym-harbour-spice-trade.jpeg");
}

.menu-tile:nth-child(4) {
  background-image: linear-gradient(180deg, rgba(35, 56, 58, .32), rgba(21, 24, 25, .94)), url("../images/cochym-port-market.jpeg");
}

.menu-tile span {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.12;
}

.menu-tile small {
  margin-top: 8px;
  color: #efe7ce;
  font-family: Arial, sans-serif;
  line-height: 1.45;
}

.feature-list {
  padding: 0;
  margin: 20px 0 10px;
  list-style: none;
}

.feature-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(35, 56, 58, .16);
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

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

.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: var(--deep);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
}

.dark-band h2 {
  color: var(--white);
}

address {
  margin-top: 18px;
  font-style: normal;
  font-size: 1.12rem;
  color: #f5edda;
}

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

.contact-actions a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(242, 238, 219, .22);
  border-radius: 6px;
  background: rgba(255, 253, 246, .07);
}

.contact-actions span {
  color: var(--sand);
  font-family: Arial, sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
}

.contact-actions strong {
  font-size: 1.18rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(16px, 4vw, 54px);
  color: var(--ivory);
  background: var(--ink);
  font-family: Arial, sans-serif;
  font-size: .86rem;
}

.site-footer p {
  margin: 0;
  font-size: inherit;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #1f7a4c;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

@media (hover: hover) {
  .nav a:hover,
  .site-footer a:hover {
    color: var(--gold);
  }

  .button:hover,
  .header-whatsapp:hover,
  .contact-actions a:hover,
  .menu-tile:hover,
  .gallery-grid a:hover,
  .image-link:hover {
    transform: translateY(-2px);
  }

  .button,
  .header-whatsapp,
  .contact-actions a,
  .menu-tile,
  .gallery-grid a,
  .image-link {
    transition: transform .18s ease, filter .18s ease;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .two-column,
  .two-column.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding: 10px 14px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .header-whatsapp {
    padding-inline: 13px;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: 3.55rem;
  }

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

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

  .menu-tile {
    min-height: 170px;
  }

  .site-footer {
    display: grid;
  }
}
