/* MonakoOffers — Mediterranean lifestyle digest */
:root {
  --bg: #faf7f0;
  --bg-soft: #f3ecdc;
  --bg-card: #ffffff;
  --ink: #1f2a28;
  --ink-soft: #4e5c58;
  --muted: #8a948f;
  --emerald: #234e3f;
  --emerald-deep: #16362b;
  --brass: #b7935a;
  --brass-deep: #8e6f3f;
  --line: #e3dcc7;
  --shadow: 0 24px 50px -28px rgba(31, 42, 40, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}

a { color: var(--brass-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--emerald); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Top bar */
.topbar {
  background: var(--emerald-deep);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
}
.topbar .dot { color: var(--brass); margin: 0 10px; }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--emerald);
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -0.01em;
}
.logo .sup {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin-left: 4px;
  position: relative;
  top: -10px;
}
.nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav a:hover { color: var(--brass-deep); }

/* Hero */
.hero {
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(183, 147, 90, 0.10) 0%, transparent 45%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-frame {
  border: 1px solid var(--brass);
  padding: 70px 56px;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.hero-frame::before,
.hero-frame::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--brass);
}
.hero-frame::before { top: -8px; left: -8px; border-right: none; border-bottom: none; background: var(--bg); }
.hero-frame::after  { bottom: -8px; right: -8px; border-left: none; border-top: none; background: var(--bg); }
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 78px);
  margin-bottom: 26px;
  line-height: 1.05;
}
.hero h1 em {
  font-style: italic;
  color: var(--emerald);
}
.hero p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--emerald);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--emerald);
  cursor: pointer;
  transition: all .2s ease;
}
.btn:hover { background: var(--brass-deep); border-color: var(--brass-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--emerald);
}
.btn-ghost:hover { background: var(--emerald); color: var(--bg); }

.hero-center {
  text-align: center;
}

/* Sections */
section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 20px;
  max-width: 720px;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* Offer cards */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer {
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-img {
  aspect-ratio: 16/11;
  position: relative;
  overflow: hidden;
}
.offer:nth-child(1) .offer-img {
  background:
    linear-gradient(135deg, rgba(35, 78, 63, 0.85), rgba(22, 54, 43, 0.95)),
    radial-gradient(circle at 20% 30%, #b7935a 0%, transparent 50%);
}
.offer:nth-child(2) .offer-img {
  background:
    linear-gradient(135deg, rgba(183, 147, 90, 0.95), rgba(142, 111, 63, 0.95));
}
.offer:nth-child(3) .offer-img {
  background:
    linear-gradient(135deg, rgba(31, 42, 40, 0.95), rgba(35, 78, 63, 0.9));
}
.offer:nth-child(4) .offer-img {
  background:
    linear-gradient(135deg, rgba(35, 78, 63, 0.9), rgba(31, 42, 40, 0.95)),
    radial-gradient(circle at 80% 30%, #b7935a 0%, transparent 40%);
}
.offer:nth-child(5) .offer-img {
  background:
    linear-gradient(135deg, rgba(142, 111, 63, 0.95), rgba(35, 78, 63, 0.85));
}
.offer:nth-child(6) .offer-img {
  background:
    linear-gradient(135deg, rgba(22, 54, 43, 0.95), rgba(183, 147, 90, 0.85));
}
.offer-stamp {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bg);
  color: var(--emerald);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border: 1px solid var(--brass);
}
.offer-body { padding: 28px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.offer-loc {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.offer h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.offer p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 18px;
  flex: 1;
}
.offer-meta {
  font-size: 13px;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Quote section */
.editorial {
  background: var(--emerald);
  color: var(--bg);
  border: none;
  padding: 110px 0;
  text-align: center;
}
.editorial .section-eyebrow { color: var(--brass); }
.editorial h2 {
  color: var(--bg);
  font-size: clamp(32px, 4.5vw, 50px);
  max-width: 880px;
  margin: 0 auto 24px;
  font-style: italic;
}
.editorial p { color: rgba(250, 247, 240, 0.85); max-width: 580px; margin: 0 auto 32px; }
.editorial .btn { background: var(--brass); border-color: var(--brass); color: var(--emerald-deep); }
.editorial .btn:hover { background: var(--bg); border-color: var(--bg); color: var(--emerald); }

/* Page content */
.page {
  padding: 90px 0;
  max-width: 780px;
  margin: 0 auto;
}
.page h1 {
  font-size: clamp(40px, 5.5vw, 60px);
  margin-bottom: 16px;
}
.page .meta {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.page h2 { font-size: 30px; margin: 44px 0 14px; }
.page h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald);
}
.page p, .page li {
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-size: 16px;
}
.page ul { padding-left: 22px; margin-bottom: 14px; }
.page strong { color: var(--ink); }

/* Forms */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 44px;
  margin-top: 28px;
  box-shadow: var(--shadow);
}
.form-field { margin-bottom: 22px; }
label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 0;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--emerald);
  background: #fff;
}
textarea { min-height: 130px; resize: vertical; }

.notice {
  background: var(--bg-soft);
  border-left: 3px solid var(--brass);
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.notice strong { color: var(--ink); }

.success {
  display: none;
  background: #eaf3ed;
  border-left: 3px solid var(--emerald);
  padding: 18px 22px;
  margin-top: 24px;
  color: var(--emerald-deep);
  font-size: 15px;
}
.success.show { display: block; }

/* Footer */
.site-footer {
  background: var(--emerald-deep);
  color: rgba(250, 247, 240, 0.8);
  padding: 70px 0 30px;
}
.site-footer .logo { color: var(--bg); }
.site-footer .logo .sup { color: var(--brass); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  color: var(--brass);
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid a { color: rgba(250, 247, 240, 0.85); font-size: 14px; }
.footer-grid a:hover { color: var(--brass); }
.footer-grid p { color: rgba(250, 247, 240, 0.7); font-size: 14px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(183, 147, 90, 0.25);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(250, 247, 240, 0.5);
}

@media (max-width: 820px) {
  .offers { grid-template-columns: 1fr; }
  .hero-frame { padding: 50px 28px; }
  .nav { gap: 18px; }
  .nav a:not(.btn) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
