/* ==================================================================
   Dinner is Served — elegant multipage design
   Display serif (Cormorant Garamond) + clean sans (Jost)
   Warm cream + espresso + gold palette
================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bg:        #fbf8f3;
  --bg-2:      #f3ece1;
  --ink:       #1d1a16;
  --muted:     #5e564b;
  --gold:      #b08d57;
  --gold-dark: #8a6d3b;
  --line:      #e6dccd;
  --white:     #ffffff;
  --dark:      #211d19;
  --shadow:    0 24px 60px rgba(45, 35, 18, 0.14);
  --shadow-sm: 0 10px 28px rgba(45, 35, 18, 0.08);
  --radius:    16px;
  --maxw:      1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

/* visible keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 2px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

body {
  margin: 0;
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: .005em;
}

p { margin: 0 0 1.1em; }
img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 1.1em;
  display: inline-block;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
}
.screen-reader-text:focus {
  position: fixed !important; top: 8px; left: 8px;
  width: auto; height: auto; clip: auto;
  background: var(--ink); color: #fff; padding: 10px 18px; z-index: 1000;
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}
.custom-logo { width: auto; height: 60px; }

/* hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before, .nav-toggle-bar::after { content: ''; position: absolute; left: 0; }
.nav-toggle-bar::before { top: -7px; }
.nav-toggle-bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { top: 0; transform: rotate(-45deg); }

.site-navigation ul.menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-navigation ul.menu li a {
  display: block;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}
.site-navigation ul.menu li a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-navigation ul.menu li a:hover,
.site-navigation ul.menu li.current-menu-item a { color: var(--ink); }
.site-navigation ul.menu li a:hover::after,
.site-navigation ul.menu li.current-menu-item a::after { transform: scaleX(1); }

/* ---------------- Buttons ---------------- */
.button {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  transition: all .25s ease;
}
.button:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-2px); }
.button.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.button.ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.button.light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.button.light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 2rem 0 .5rem; }

/* ---------------- Hero ---------------- */
.hero {
  background:
    radial-gradient(1100px 520px at 78% -10%, var(--bg-2), transparent 62%),
    var(--bg);
  padding: 84px 0 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.9rem, 5.2vw, 4.6rem); margin-bottom: .3em; }
.hero .lead { font-size: 1.18rem; color: var(--muted); }
.hero-copy p:not(.lead):not(.eyebrow) { color: var(--muted); }
.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

/* compact page banner (interior pages) */
.page-banner {
  background: var(--dark);
  color: var(--bg);
  text-align: center;
  padding: 74px 0 64px;
}
.page-banner .eyebrow { color: var(--gold); }
.page-banner h1 { color: #fff; font-size: clamp(2.6rem, 5vw, 4rem); margin: 0; }
.page-banner p { color: rgba(251,248,243,.75); max-width: 640px; margin: 1rem auto 0; }

/* ---------------- Generic section ---------------- */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-2); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 4vw, 3.1rem); }
.section-head .lead { color: var(--muted); font-size: 1.1rem; }

.divider {
  width: 56px; height: 2px; background: var(--gold);
  margin: 1.2rem auto 1.6rem; border: 0;
}
.divider.left { margin-left: 0; }

.page-content { font-size: 1.05rem; }

/* ---------------- Offerings cards ---------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-2); font-size: 1.7rem; margin-bottom: 22px;
}
.card h3 { font-size: 1.9rem; margin-bottom: .35em; }
.card p { color: var(--muted); margin: 0; font-size: 1rem; }

/* ---------------- Steps / timeline ---------------- */
.steps {
  list-style: none; margin: 0 auto; padding: 0; max-width: 760px;
  display: grid; gap: 18px;
}
.steps li {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.steps li .num {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: #fff;
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps li strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600; color: var(--ink);
  margin-bottom: .1em; line-height: 1.2;
}
.steps li span.txt { color: var(--muted); }

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start;
}
.contact-aside p { color: var(--muted); }
.contact-aside .detail { margin-top: 1.4rem; }
.contact-aside .detail span {
  display: block; text-transform: uppercase; letter-spacing: .2em;
  font-size: .7rem; font-weight: 600; color: var(--gold-dark); margin-bottom: .2rem;
}
.contact-aside .detail a { font-size: 1.1rem; }

.contact-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block; margin-bottom: .4rem; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--muted);
}
.field input, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 16px; font: inherit; color: var(--ink); background: var(--bg);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,141,87,.15);
}
.field textarea { min-height: 150px; resize: vertical; }
.field .req { color: var(--gold-dark); }
.form-note { font-size: .82rem; color: var(--muted); margin: 0 0 1.2rem; }

/* ---------------- CTA band ---------------- */
.cta { background: var(--dark); color: var(--bg); text-align: center; }
.cta h2 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.2rem); }
.cta p { color: rgba(251,248,243,.78); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.cta .button-row { justify-content: center; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--dark); color: var(--bg); padding: 60px 0 36px; }
.footer-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 30px;
  align-items: center; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { height: 64px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.footer-nav ul {
  display: flex; flex-wrap: wrap; gap: 8px 26px; list-style: none; margin: 0; padding: 0;
}
.footer-nav a {
  color: rgba(251,248,243,.78); font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--gold); }
.copyright {
  margin: 26px 0 0; font-size: .82rem; letter-spacing: .04em;
  color: rgba(251,248,243,.55); text-align: center;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; }
  .hero-media::before { inset: 12px -12px -12px 12px; }
  .cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0; }
}
/* ---- Mobile navigation: collapse into hamburger dropdown ---- */
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-navigation {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(251, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .site-navigation.open { max-height: 70vh; }
  .site-navigation ul.menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }
  .site-navigation ul.menu li a {
    padding: 16px 28px;
    font-size: .9rem;
    border-bottom: 1px solid var(--line);
  }
  .site-navigation ul.menu li:last-child a { border-bottom: none; }
  .site-navigation ul.menu li a::after { display: none; }
  .site-navigation ul.menu li a:active,
  .site-navigation ul.menu li.current-menu-item a { color: var(--gold-dark); }
}
@media (max-width: 640px) {
  .custom-logo { height: 48px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-nav ul { justify-content: center; }
}

/* respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
