:root {
  --background: #fbf8f0;
  --foreground: #2b2118;
  --primary: #285243;
  --primary-deep: #18372e;
  --secondary: #f1e5cf;
  --accent: #c88531;
  --accent-deep: #9e5f24;
  --muted: #74685b;
  --card: #fffaf1;
  --border: rgba(43, 33, 24, 0.16);
  --shadow: 0 22px 60px rgba(43, 33, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "PT Sans", Arial, sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--accent);
  color: #fff;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 64px;
  padding: 10px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(43, 33, 24, 0.08);
  background: rgba(251, 248, 240, 0.95);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--primary);
}

.brand img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 0.82;
}

.brand strong,
.script-name span {
  font-family: "Sacramento", cursive;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 22px);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
  color: var(--foreground);
  transition: color 160ms ease;
}

nav a:hover {
  color: var(--accent-deep);
}

.hero {
  min-height: 70vh;
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
  text-align: center;
  color: #fff;
  background-color: var(--primary);
}

.pineapple-bg {
  background-image:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.13) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.07) 25%, transparent 25%),
    linear-gradient(315deg, rgba(0, 0, 0, 0.07) 25%, transparent 25%);
  background-position: 0 0, 0 0, 0 0, 18px 18px, 18px 18px;
  background-size: 36px 36px;
}

.hero-mark {
  display: grid;
  justify-items: center;
  margin-bottom: 12px;
}

.hero-mark img {
  height: clamp(142px, 20vw, 210px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.18));
}

.script-name {
  display: grid;
  margin-top: 10px;
  line-height: 0.82;
}

.script-name span {
  color: #fff;
  font-size: clamp(2.7rem, 5.5vw, 4rem);
}

.chef-title {
  margin: 10px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 600;
}

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

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 400;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 26px;
  border: 0;
  border-radius: 6px;
  padding: 12px 22px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  background: var(--primary-deep);
}

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

.button-light:hover {
  background: #f8edd7;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 80px);
}

.section-muted {
  background: var(--secondary);
}

.section-intro {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-intro.center,
.center {
  text-align: center;
}

.center .lead,
.section-intro.center .lead {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin-left: auto;
}

.service-item,
.menu-grid article,
.quote-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.service-item {
  padding: 26px;
}

.service-wide {
  grid-column: 1 / -1;
}

.icon {
  display: inline-grid;
  place-items: center;
  min-width: 62px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(40, 82, 67, 0.12);
  color: var(--primary);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.portrait-panel {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 28%, rgba(200, 133, 49, 0.18), transparent 32%),
    var(--secondary);
}

.portrait-panel img {
  max-height: 320px;
  width: auto;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-list span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}

.placeholder-grid,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1060px;
  margin: 40px auto 0;
}

.placeholder-grid div {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(43, 33, 24, 0.28);
  border-radius: 8px;
  padding: 22px;
  color: var(--muted);
  background: rgba(255, 250, 241, 0.5);
}

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

.menu-grid article {
  padding: 28px;
  text-align: left;
}

.menu-grid strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-deep);
}

.quote-card {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 30px;
}

.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 40px auto 0;
  border: 2px solid rgba(40, 82, 67, 0.18);
  border-radius: 10px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: left;
}

label {
  display: grid;
  gap: 7px;
  color: var(--foreground);
  font-weight: 700;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(43, 33, 24, 0.2);
  border-radius: 6px;
  background: #fffdf7;
  color: var(--foreground);
  padding: 11px 12px;
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--foreground);
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  color: #fff;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

  nav {
    max-width: 430px;
  }

  .service-grid,
  .split,
  .placeholder-grid,
  .menu-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .portrait-panel {
    min-height: 280px;
  }

  footer {
    display: grid;
    justify-items: start;
  }
}

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

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 520px;
  }

  .brand strong {
    font-size: 1.65rem;
  }
}
