:root {
  --ink: #18363a;
  --muted: #6b5f4f;
  --cream: #f8f1e4;
  --paper: #fffaf0;
  --sea: #0c687e;
  --sea-dark: #0a343b;
  --coral: #e6693e;
  --sand: #e9c894;
  --line: rgba(24, 54, 58, .14);
  --shadow: 0 24px 70px rgba(23, 50, 52, .16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-tight { padding: 56px 0 96px; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1160px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px 10px 18px;
  background: rgba(255, 250, 240, .9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0,0,0,.15);
  transition: .25s ease;
}
.site-header.is-scrolled { top: 10px; box-shadow: 0 12px 34px rgba(0,0,0,.12); }
.brand img { height: 52px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .96rem; }
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -8px;
  background: var(--coral);
  transition: width .2s ease;
}
.site-nav a:hover::after { width: 100%; }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.header-cta, .btn-primary { background: var(--coral); color: #fff; box-shadow: 0 14px 30px rgba(230,105,62,.28); }
.btn-secondary { color: #fff; border: 1px solid rgba(255,255,255,.58); background: rgba(255,255,255,.08); }
.btn:hover { transform: translateY(-1px); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

.hero {
  position: relative;
  min-height: 920px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffaf0;
}
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(5,30,35,.86), rgba(5,30,35,.44) 50%, rgba(5,30,35,.12)), linear-gradient(0deg, rgba(5,30,35,.72), transparent 38%); }
.hero-content { position: relative; padding-top: 120px; }
.eyebrow { margin: 0 0 16px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; font-size: .78rem; color: var(--sand); }
.eyebrow.accent { color: var(--coral); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; font-size: clamp(3rem, 8vw, 6.6rem); line-height: .9; letter-spacing: -.07em; margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 5vw, 4.1rem); line-height: 1.02; letter-spacing: -.05em; margin-bottom: 22px; }
h3 { font-size: 1.55rem; line-height: 1.15; margin-bottom: 10px; }
.hero-text { max-width: 650px; font-size: clamp(1.12rem, 2vw, 1.4rem); color: rgba(255,250,240,.88); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 58px; }
.hero-info { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 760px; }
.hero-info article { padding: 20px; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.1); backdrop-filter: blur(16px); border-radius: 22px; }
.hero-info strong, .hero-info span { display: block; }
.hero-info span { color: rgba(255,250,240,.72); }

.intro-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 52px; align-items: end; }
.intro p, .section-heading p { color: var(--muted); font-size: 1.08rem; max-width: 720px; }
.intro-note { position: relative; padding: 32px; border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); overflow: hidden; }
.intro-note::after { content: ""; position: absolute; inset: 0; background: url('../assets/img/mediterranean-pattern.png') center/cover; opacity: .32; pointer-events: none; }
.intro-note span, .intro-note strong, .intro-note p { position: relative; z-index: 1; }
.intro-note span { color: var(--coral); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.intro-note strong { display: block; font-size: 1.7rem; line-height: 1.12; margin: 10px 0; }
.intro-note p { color: var(--muted); margin-bottom: 0; }

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.food-card { background: var(--paper); border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.6); }
.food-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.food-card div { padding: 26px; position: relative; }
.card-icon { width: 58px; height: 58px; margin-bottom: 14px; }
.food-card p { color: var(--muted); margin-bottom: 0; }

.experience { background: var(--sea-dark); color: #fffaf0; position: relative; overflow: hidden; }
.experience::before { content: ""; position: absolute; inset: 0; background: url('../assets/img/mediterranean-pattern.png') center/560px; opacity: .18; }
.experience-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; gap: 60px; align-items: center; }
.experience-copy p { color: rgba(255,250,240,.78); }
.feature-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; align-items: center; gap: 14px; padding: 14px; background: rgba(255,255,255,.08); border-radius: 18px; }
.feature-list img { width: 42px; height: 42px; }
.experience-card { position: relative; }
.experience-card > img { border-radius: 38px; box-shadow: 0 32px 90px rgba(0,0,0,.38); width: 100%; }
.floating-badge { position: absolute; left: -24px; bottom: 28px; max-width: 360px; padding: 22px; border-radius: 24px; background: #fffaf0; color: var(--ink); box-shadow: var(--shadow); }
.floating-badge strong, .floating-badge span { display: block; }
.floating-badge span { color: var(--muted); }

.section-heading { text-align: center; }
.section-heading p { margin-inline: auto; }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-auto-rows: 260px; gap: 18px; margin-top: 40px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.gallery-grid img:first-child { grid-row: span 2; }
code { background: rgba(12,104,126,.12); padding: .1em .4em; border-radius: 6px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.testimonial-grid article { background: var(--paper); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.testimonial-grid p { font-size: 1.35rem; line-height: 1.35; }
.testimonial-grid span { color: var(--coral); font-weight: 800; }

.reservation { background: linear-gradient(180deg, #f8f1e4, #efe1c7); }
.reservation-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 44px; align-items: start; }
.contact-box { margin-top: 28px; padding: 24px; border-radius: var(--radius); background: var(--sea); color: #fff; }
.contact-box a { display: block; font-weight: 900; font-size: 2rem; line-height: 1; margin-bottom: 12px; }
.contact-box span { color: rgba(255,255,255,.8); }
.booking-form { display: grid; gap: 18px; padding: 32px; border-radius: 34px; background: var(--paper); box-shadow: var(--shadow); }
.booking-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 800; }
.booking-form input, .booking-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; background: #fff; color: var(--ink); padding: 15px 16px; outline: none; }
.booking-form input:focus, .booking-form textarea:focus { border-color: var(--sea); box-shadow: 0 0 0 4px rgba(12,104,126,.12); }
.booking-form .btn { justify-self: start; }
.form-status { min-height: 24px; color: var(--sea); font-weight: 800; margin: 0; }
.form-status[data-state="error"] { color: #b42318; }

.site-footer { padding: 54px 0; background: #18363a; color: #fffaf0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
.footer-grid p, .footer-grid span { color: rgba(255,250,240,.7); }
.footer-grid strong, .footer-grid a, .footer-grid span { display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--sand); }

@media (max-width: 900px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header.is-open { border-radius: 26px; align-items: flex-start; }
  .site-header.is-open .site-nav { display: grid; position: absolute; left: 18px; right: 18px; top: 74px; padding: 18px; background: var(--paper); border-radius: 22px; box-shadow: var(--shadow); }
  .hero { min-height: 820px; }
  .hero-info, .intro-grid, .cards-grid, .experience-grid, .reservation-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery-grid img:first-child { grid-row: span 1; }
  .floating-badge { position: static; margin-top: 16px; max-width: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1140px); }
  .section { padding: 72px 0; }
  .site-header { top: 10px; width: calc(100% - 20px); }
  .brand img { height: 46px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-info { grid-template-columns: 1fr; }
  .booking-form { padding: 22px; }
  .contact-box a { font-size: 1.55rem; }
}
.scroll-to-top {
  position: fixed;
  bottom: 14px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6693e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(230,105,62,.28);
  font-size: 24px;
  border: none;
  padding: 0;
}
.scroll-to-top:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(230,105,62,.38); }
.scroll-to-top.visible { opacity: 1; visibility: visible; }
