/* ============================================================================
   122 Corson — brand layer.

   Loads last in the chain. Two jobs:
   1. Redefine the inherited Pegas :root tokens, so the generic classes those
      layers define (.container, .btn, .eyebrow, .display-*) come out in this
      site's palette instead of Pegas red / Red Hat Display.
   2. Define the .c-* components.

   Palette and type are taken from the approved mockups
   (122 Corson Homepage v2.dc.html, Reservation.dc.html).
   ========================================================================= */

:root {
	/* ---- Corson palette ---- */
	--c-cream:      #fbf8f1;
	--c-sand:       #f0ebde;
	--c-navy:       #1b2a5e;
	--c-navy-deep:  #0c1128;
	--c-rust:       #a8331f;
	--c-gold:       #e8b06a;
	--c-parchment:  #f7dfbe;
	--c-body:       #3c4666;
	--c-muted:      #454e73;
	--c-line:       #ddd8ca;
	--c-field:      #b9b2a0;
	--c-on-navy:    #f3ede1;
	--c-on-navy-dim:#ccd3e8;

	--c-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--c-sans:    "Jost", system-ui, -apple-system, sans-serif;

	--c-container: 1140px;
	--c-gutter: clamp(20px, 4vw, 32px);

	/* ---- Redefinitions of the inherited Pegas tokens ----------------------
	   Everything the inherited layers colour or typeset is driven by these.
	   Overriding them here re-skins .btn / .eyebrow / .display-* / the form
	   chrome in one place instead of fighting each rule on specificity. */
	--red:         #a8331f;
	--red-bright:  #8f2a19;
	--red-tint:    #f6ece7;
	--coal:        #1b2a5e;
	--coal-deep:   #0c1128;
	--coal-line:   #2b3866;
	--coal-muted:  #7d8399;
	--ink:         #1b2a5e;
	--ink-2:       #24305c;
	--ink-3:       #3c4666;
	--gray:        #454e73;
	--gray-light:  #7d8399;
	--line:        #ddd8ca;
	--line-dark:   #b9b2a0;
	--bg-off:      #f0ebde;
	--bg-cream:    #fbf8f1;

	--font-display: "Cormorant Garamond", Georgia, serif;
	--font-sans:    "Jost", system-ui, sans-serif;
	--font-mono:    "Jost", system-ui, sans-serif;

	--pegas-container: 1140px;
}

/* ---------------------------------------------------------------- base ---- */

body {
	margin: 0;
	background: var(--c-cream);
	color: var(--c-navy);
	font-family: var(--c-sans);
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

a { color: var(--c-navy); text-decoration: none; }
a:hover { color: var(--c-rust); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--c-rust);
	outline-offset: 3px;
}

img { max-width: 100%; height: auto; }

.c-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
}
.c-skip:focus {
	left: 8px;
	top: 8px;
	padding: 12px 18px;
	background: #fff;
	color: var(--c-navy);
	border: 2px solid var(--c-navy);
}

/* The inherited display-* utilities are 900-weight Red Hat; this design's
   headings are light-weight serif. Restated rather than overridden per-use. */
.display-xl, .display-lg, .display-md {
	font-family: var(--c-display);
	font-weight: 400;
	letter-spacing: 0;
}

/* ------------------------------------------------------------ structure --- */

/* Flynt's .pageWrapper is a sticky-footer grid (grid-template-rows: auto 1fr
   auto; min-block-size:100%) whose 1fr middle row stretches <main> to fill the
   viewport. On a short page — Contact is three blocks — that opens a tall blank
   band between the last section and the footer. Collapsing the rows to their
   content height puts any leftover viewport height BELOW the footer instead;
   align-content:start stops the grid spreading that slack across the rows and
   floating the content into the vertical middle.

   Ported from the deleted assets/pegas/fixes.css, which carried this same fix. */
.pageWrapper {
	grid-template-rows: auto auto auto;
	align-content: start;
}

/* The inherited assets/build/base.css styles the bare `section` ELEMENT with
   page padding (--gap-section-side, 40px at desktop), vertical rhythm and
   --color-section as a background. Every Corson section sets its own, but the
   full-bleed ones (hero, split, cta) set none — so they were inheriting a 40px
   inset and a white band behind them.

   Two type selectors (0,0,2) is deliberate: it out-specifies base.css's bare
   `section` (0,0,1) while still losing to every .c-* class below, so component
   rules keep working untouched. */
flynt-component section {
	padding: 0;
	background-color: transparent;
	color: inherit;
	/* The header is sticky, so an #anchor would otherwise land under it. */
	scroll-margin-top: 104px;
}

.c-container {
	width: 100%;
	max-width: var(--c-container);
	margin-inline: auto;
	padding-inline: var(--c-gutter);
}
.c-container--narrow { max-width: 840px; }
.c-container--reading { max-width: 760px; }

.c-section { padding: clamp(64px, 9vw, 104px) 0; }
.c-section--tight { padding: clamp(48px, 6vw, 76px) 0; }

.c-section--cream { background: var(--c-cream); color: var(--c-navy); }
.c-section--sand  { background: var(--c-sand);  color: var(--c-navy); }
.c-section--navy  { background: var(--c-navy);  color: var(--c-on-navy); }

.c-section--navy h1,
.c-section--navy h2,
.c-section--navy h3 { color: #fff; }
.c-section--navy p  { color: var(--c-on-navy); }
.c-section--navy .c-eyebrow { color: var(--c-gold); }

/* --------------------------------------------------------------- type ----- */

.c-eyebrow {
	margin: 0 0 12px;
	font-family: var(--c-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.36em;
	text-transform: uppercase;
	color: var(--c-rust);
}

.c-h1 {
	margin: 0;
	font-family: var(--c-display);
	font-weight: 400;
	font-size: clamp(46px, 9vw, 132px);
	line-height: 0.94;
}

.c-h2 {
	margin: 0 0 16px;
	font-family: var(--c-display);
	font-weight: 400;
	font-size: clamp(34px, 5.2vw, 62px);
	line-height: 1.03;
	color: var(--c-navy);
}

.c-h3 {
	margin: 0 0 10px;
	font-family: var(--c-display);
	font-weight: 500;
	font-size: 26px;
	line-height: 1.2;
	color: var(--c-navy);
}

.c-lede {
	margin: 0;
	font-size: 16.5px;
	line-height: 1.8;
	color: var(--c-body);
	text-wrap: pretty;
}

.c-rule {
	width: 88px;
	height: 2px;
	background: var(--c-rust);
	border: 0;
	margin: 26px 0;
}
.c-rule--center { margin-inline: auto; }

.c-serif-italic {
	font-family: var(--c-display);
	font-style: italic;
	font-weight: 300;
}

/* ------------------------------------------------------------- buttons ---- */

.c-btn {
	display: inline-block;
	padding: 16px 34px;
	background: var(--c-rust);
	color: #fff;
	font-family: var(--c-sans);
	font-size: 12.5px;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border: 1px solid var(--c-rust);
	cursor: pointer;
	transition: background .2s, color .2s, border-color .2s;
}
.c-btn:hover { background: #8f2a19; border-color: #8f2a19; color: #fff; }

.c-btn--ghost {
	background: transparent;
	color: var(--c-navy);
	border-color: #7d8399;
	padding: 11px 20px;
	font-size: 12.5px;
	letter-spacing: 0.16em;
}
.c-btn--ghost:hover { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }

.c-btn--sm { padding: 11px 20px; font-size: 12.5px; letter-spacing: 0.16em; }

/* --------------------------------------------------------------- header --- */

.c-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 24px;
	padding: 10px clamp(16px, 3vw, 30px);
	background: var(--c-cream);
	border-bottom: 3px solid var(--c-rust);
}

.c-brand { display: flex; align-items: center; gap: 14px; }
.c-brand img { height: 76px; width: auto; display: block; }
.c-brand__mark {
	font-family: var(--c-display);
	font-size: clamp(24px, 4vw, 34px);
	line-height: 1;
	color: var(--c-navy);
}
.c-brand__place {
	font-family: var(--c-display);
	font-size: 15px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #3a4166;
}

.c-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 22px;
	font-size: 12.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
	list-style: none;
	margin: 0;
	padding: 0;
}
.c-nav a { color: var(--c-navy); }
.c-nav a:hover { color: var(--c-rust); }
.c-nav .c-nav__cta > a,
.c-nav a.c-nav__cta {
	padding: 11px 22px;
	background: var(--c-rust);
	color: #fff;
	letter-spacing: 0.16em;
}
.c-nav .c-nav__cta > a:hover,
.c-nav a.c-nav__cta:hover { background: #8f2a19; color: #fff; }

/* ---- Mobile toggle ----
   Hidden on desktop, and hidden below the breakpoint too until nav.js adds
   .c-header--js. The panel is only ever collapsed under that same class, so
   without JavaScript the nav simply stays visible and wraps. */
.c-navtoggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	margin: 0;
	border: 1px solid var(--c-line);
	background: transparent;
	color: var(--c-navy);
	cursor: pointer;
}
.c-navtoggle:hover { color: var(--c-rust); border-color: var(--c-rust); }
.c-navtoggle__close { display: none; }
.c-header.is-open .c-navtoggle__open { display: none; }
.c-header.is-open .c-navtoggle__close { display: block; }

/* ----------------------------------------------------------- hero (photo) - */

.c-hero {
	position: relative;
	min-height: 86vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-size: cover;
	background-position: center 60%;
}
.c-hero__inner { padding: clamp(90px, 14vw, 140px) var(--c-gutter) clamp(70px, 11vw, 110px); max-width: 1000px; }
.c-hero .c-eyebrow { color: var(--c-parchment); }
.c-hero__title { color: #fff; }
.c-hero__tagline {
	margin: 0 0 18px;
	font-family: var(--c-display);
	font-style: italic;
	font-size: clamp(21px, 2.7vw, 32px);
	color: #f7f3ea;
}
.c-hero__intro {
	margin: 0 auto 40px;
	max-width: 640px;
	font-size: 17px;
	line-height: 1.8;
	color: #f2efe6;
	text-wrap: pretty;
}

/* ------------------------------------------------------ page hero (navy) -- */

.c-pagehero { padding: clamp(56px, 8vw, 80px) 0 clamp(48px, 6vw, 64px); background: var(--c-navy); color: var(--c-on-navy); }
.c-pagehero .c-eyebrow { color: var(--c-gold); }
.c-pagehero__title {
	margin: 0 0 16px;
	font-family: var(--c-display);
	font-weight: 400;
	font-size: clamp(40px, 6.4vw, 84px);
	line-height: 1;
	color: #fff;
}
.c-pagehero__sub {
	margin: 0;
	font-family: var(--c-display);
	font-style: italic;
	font-size: clamp(20px, 2.4vw, 28px);
	color: var(--c-on-navy-dim);
}
.c-pagehero__meta {
	margin: 22px 0 0;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b3bcd6;
}

/* --------------------------------------------------------------- steps ---- */

.c-steps__head { max-width: 720px; margin: 0 0 clamp(36px, 5vw, 56px); }
.c-steps__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(32px, 5vw, 52px); }
.c-step p { margin: 0; font-size: 16px; line-height: 1.75; color: var(--c-body); }

/* Scoped with the parent on purpose. The numeral is a <p>, so the bare
   `.c-step__n` (0,1,0) loses to `.c-step p` (0,1,1) above and the 42px numeral
   renders at body size. `.c-step .c-step__n` (0,2,0) wins outright. */
.c-step .c-step__n {
	margin: 0 0 12px;
	font-family: var(--c-display);
	font-size: 42px;
	line-height: 1;
	color: var(--c-rust);
}

/* ---------------------------------------------------- statement band ------ */

.c-band { background: var(--c-navy); color: var(--c-on-navy); padding: clamp(56px, 8vw, 76px) 0; text-align: center; }
.c-band__text {
	margin: 0 auto;
	max-width: 940px;
	font-family: var(--c-display);
	font-weight: 300;
	font-size: clamp(25px, 3.3vw, 40px);
	line-height: 1.4;
	text-wrap: pretty;
}
.c-band__attr { margin: 22px 0 0; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); }

/* ------------------------------------------------------ upcoming menus ---- */

.c-menus__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: clamp(32px, 5vw, 48px);
}
.c-menus__note { margin: 0; max-width: 340px; font-size: 15.5px; line-height: 1.7; color: var(--c-muted); }

.c-menus__list { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--c-navy); }

.c-menu-row {
	display: grid;
	grid-template-columns: minmax(200px, 240px) 1fr auto;
	gap: clamp(20px, 4vw, 44px);
	align-items: center;
	padding: 28px clamp(12px, 2vw, 26px);
	border-bottom: 1px solid var(--c-line);
}
.c-menu-row--full { background: rgba(27, 42, 94, 0.035); }

.c-menu-row__date {
	font-family: var(--c-display);
	font-size: 25px;
	line-height: 1.25;
	color: var(--c-navy);
}
.c-menu-row__date a { color: inherit; }
.c-menu-row__date a:hover { color: var(--c-rust); }
.c-menu-row__entrees { font-size: 16.5px; line-height: 1.6; color: #333c5e; }
.c-menu-row__actions { display: flex; align-items: center; gap: 16px; white-space: nowrap; }

.c-badge {
	font-style: normal;
	font-size: 10.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	background: var(--c-rust);
	padding: 6px 11px;
}

.c-menus__empty {
	margin: 0;
	padding: 40px 26px;
	border-bottom: 1px solid var(--c-line);
	font-size: 16.5px;
	line-height: 1.8;
	color: var(--c-body);
}

.c-menus__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 26px;
	margin-top: 44px;
}
.c-card-hl { padding: 30px; background: var(--c-navy); color: var(--c-on-navy); }
.c-card-hl p:first-child { margin: 0; font-family: var(--c-display); font-size: 34px; line-height: 1; color: #fff; }
.c-card-hl p + p { margin: 8px 0 0; font-size: 15px; color: var(--c-on-navy-dim); }
.c-card-note { margin: 0; padding: 30px; border: 1px solid var(--c-line); font-size: 15px; line-height: 1.75; color: var(--c-muted); }

/* ---------------------------------------------------------------- split --- */

.c-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); align-items: stretch; }
.c-split__media { min-height: 440px; background-size: cover; background-position: center; }
.c-split__panel {
	padding: clamp(56px, 8vw, 104px) clamp(28px, 5vw, 64px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.c-split__text {
	margin: 0;
	max-width: 560px;
	font-family: var(--c-display);
	font-weight: 300;
	font-size: clamp(24px, 2.9vw, 36px);
	line-height: 1.45;
	color: var(--c-navy);
	text-wrap: pretty;
}
.c-split--media-right .c-split__media { order: 2; }

/* -------------------------------------------------------------- feature --- */

.c-feature__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: clamp(40px, 6vw, 72px);
	align-items: center;
}
.c-feature--text-right .c-feature__body { order: 2; }
.c-feature__body p { font-size: 17px; line-height: 1.85; color: var(--c-body); text-wrap: pretty; }
.c-feature__body > :first-child { margin-top: 0; }
.c-feature__cta { margin-top: 34px; }

.c-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.c-collage img { width: 100%; height: 190px; object-fit: cover; display: block; }
.c-collage img:first-child { grid-column: span 2; height: 320px; }
.c-collage--single img:first-child { height: 420px; }

/* -------------------------------------------------------------- gallery --- */

.c-gallery { text-align: center; }
.c-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 14px;
	max-width: 1240px;
	margin: clamp(32px, 5vw, 50px) auto 0;
}
.c-gallery__grid img { width: 100%; height: 270px; object-fit: cover; display: block; }

/* --------------------------------------------------------- testimonials --- */

.c-quotes__head { text-align: center; margin-bottom: clamp(32px, 5vw, 50px); }
.c-quotes__cols { columns: 3 300px; column-gap: 26px; }
.c-quote {
	margin: 0 0 26px;
	break-inside: avoid;
	background: var(--c-cream);
	border-top: 3px solid var(--c-navy);
	padding: 32px;
}
.c-quote__lead {
	margin: 0 0 12px;
	font-family: var(--c-display);
	font-style: italic;
	font-size: 22px;
	color: var(--c-navy);
}
.c-quote blockquote {
	margin: 0;
	font-family: var(--c-display);
	font-size: 20px;
	line-height: 1.55;
	font-weight: 300;
	color: #24305c;
}
.c-quote figcaption {
	margin-top: 16px;
	font-size: 11.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-rust);
}

/* ----------------------------------------------------------------- team --- */

.c-team__head { max-width: 720px; margin: 0 0 clamp(32px, 5vw, 52px); }
.c-team__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: clamp(28px, 4vw, 44px);
}
.c-person { margin: 0; }
.c-person__photo {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
	margin-bottom: 20px;
	border-top: 3px solid var(--c-navy);
}
.c-person__photo--empty {
	display: block;
	background: repeating-linear-gradient(135deg, var(--c-sand) 0 10px, #e9e3d3 10px 20px);
}
/* Reserved height even when empty: without it a person with no role title
   pulls their name a line higher than everyone else's. */
.c-person__role {
	margin: 0 0 4px;
	min-height: 1.4em;
	font-size: 11.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-rust);
}
.c-person__name {
	margin: 0 0 10px;
	font-family: var(--c-display);
	font-weight: 500;
	font-size: 26px;
	line-height: 1.2;
	color: var(--c-navy);
}
.c-person__bio { margin: 0; font-size: 16px; line-height: 1.75; color: var(--c-body); }

/* ------------------------------------------------------------------ cta --- */

.c-cta {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-size: cover;
	background-position: center;
}
.c-cta__inner { padding: clamp(60px, 9vw, 84px) var(--c-gutter); }
.c-cta__heading {
	margin: 0 0 22px;
	font-family: var(--c-display);
	font-weight: 300;
	font-size: clamp(34px, 5.4vw, 64px);
	line-height: 1.1;
	color: #fff;
}
.c-cta__intro { margin: 0 auto 32px; max-width: 560px; font-size: 16.5px; line-height: 1.8; color: #eeeade; }

/* ---------------------------------------------------------------- prose --- */

.c-prose { font-size: 17px; line-height: 1.85; color: var(--c-body); }
.c-prose--center { text-align: center; }
.c-prose h2, .c-prose h3 { font-family: var(--c-display); font-weight: 400; color: var(--c-navy); }
.c-prose a { color: var(--c-rust); text-decoration: underline; text-underline-offset: 3px; }
.c-prose > :first-child { margin-top: 0; }
.c-prose > :last-child { margin-bottom: 0; }

/* -------------------------------------------------------------- details --- */

.c-details__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(32px, 5vw, 56px); align-items: start; }
.c-details__list { display: grid; gap: 26px; margin: 32px 0 0; padding: 0; }
.c-detail { margin: 0; }
.c-detail dt {
	font-size: 11.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-rust);
	margin-bottom: 6px;
}
.c-detail dd {
	margin: 0;
	font-family: var(--c-display);
	font-size: 22px;
	line-height: 1.4;
	color: var(--c-navy);
	white-space: pre-line;
}
.c-detail dd a { color: var(--c-navy); border-bottom: 1px solid var(--c-line); }
.c-detail dd a:hover { color: var(--c-rust); border-color: var(--c-rust); }

.c-map { width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--c-line); display: block; }

/* ------------------------------------------------------- single dinner ---- */

.c-menu-body {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
.c-menu-body__course {
	margin: 0 0 20px;
	font-size: 12px;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--c-rust);
}
.c-menu-body__dish {
	margin: 0;
	font-family: var(--c-display);
	font-size: 32px;
	line-height: 1.2;
	color: var(--c-navy);
}
.c-menu-body__note { margin: 8px 0 0; font-size: 16.5px; line-height: 1.7; color: var(--c-muted); }
.c-menu-body__sep { width: 40px; height: 1px; background: var(--c-line); border: 0; margin: 44px auto; }
.c-menu-body__group + .c-menu-body__group { margin-top: 44px; }

.c-menu-terms {
	margin: 56px 0 0;
	padding: 26px 30px;
	background: var(--c-sand);
	font-size: 16.5px;
	line-height: 1.75;
	color: #333c5e;
	text-wrap: pretty;
}

.c-full-notice {
	margin: 0 0 32px;
	padding: 20px 26px;
	border-left: 3px solid var(--c-rust);
	background: rgba(168, 51, 31, 0.06);
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--c-body);
}

/* ----------------------------------------------------------------- form --- */

.c-form__head { max-width: 620px; margin-bottom: clamp(28px, 4vw, 40px); }
.c-form__note { margin: 18px 0 0; font-size: 14px; line-height: 1.7; color: var(--c-muted); }
.c-form__warn { margin: 0; padding: 18px 22px; border: 1px dashed var(--c-rust); color: var(--c-rust); font-size: 15px; }

.c-form__shell {
	background: var(--c-cream);
	border: 1px solid var(--c-line);
	padding: clamp(24px, 4vw, 38px);
}

/* Fluent Forms skin. The plugin owns the DOM; these rules only map its classes
   onto the Corson tokens. Scoped to .c-form__shell so the plugin's own defaults
   still apply to any form rendered outside a Corson form block.

   Prefixed with .c-section (0,3,0) rather than .c-form__shell alone (0,2,0):
   Fluent Forms' own stylesheet is enqueued during render, so it prints AFTER
   corson.css and wins every specificity tie. The submit button's COLOURS are
   not set here at all — the plugin emits a per-form inline rule at (0,3,1) for
   those, so they live in the form's settings instead (see restyle-buttons). */
.c-section .c-form__shell .ff-el-group { margin-bottom: 22px; }

.c-section .c-form__shell .ff-el-input--label label {
	font-family: var(--c-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 8px;
}
.c-section .c-form__shell .ff-el-is-required.ff-el-input--label label:after {
	color: var(--c-rust);
	margin-left: 4px;
}

.c-section .c-form__shell .ff-el-form-control {
	width: 100%;
	font-family: var(--c-sans);
	font-size: 16px;
	line-height: 1.5;
	padding: 13px 14px;
	color: var(--c-navy);
	background: #fff;
	border: 1px solid var(--c-field);
	border-radius: 0;
	box-shadow: none;
	transition: border-color .15s;
}
.c-section .c-form__shell .ff-el-form-control:focus {
	border-color: var(--c-rust);
	outline: 2px solid var(--c-rust);
	outline-offset: 1px;
}
.c-section .c-form__shell .ff-el-form-control::placeholder { color: #9aa0b4; }
.c-form__shell textarea.ff-el-form-control { min-height: 130px; }

.c-section .c-form__shell .ff-el-input--content .ff-el-form-check-label { font-size: 16px; color: var(--c-body); }

.c-section .c-form__shell .ff-btn-submit,
.c-form__shell .ff_btn_style {
	display: inline-block;
	padding: 16px 34px;
	background: var(--c-rust);
	color: #fff;
	font-family: var(--c-sans);
	font-size: 12.5px;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border: 1px solid var(--c-rust);
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	transition: background .2s;
}
.c-section .c-form__shell .ff-btn-submit:hover,
.c-form__shell .ff_btn_style:hover { background: #8f2a19; border-color: #8f2a19; }

.c-section .c-form__shell .ff-el-form-hide_label .ff-el-input--label { display: none; }
.c-form__shell .error-text,
.c-section .c-form__shell .ff-el-is-error .text-danger { color: var(--c-rust); font-size: 14px; }

.c-section .c-form__shell .ff-message-success {
	padding: 26px 28px;
	background: var(--c-sand);
	border-left: 3px solid var(--c-rust);
	font-size: 16.5px;
	line-height: 1.75;
	color: var(--c-navy);
}

/* --------------------------------------------------------------- footer --- */

.c-footer {
	background: var(--c-navy);
	color: var(--c-on-navy);
	padding: clamp(48px, 7vw, 72px) 0 40px;
}
.c-footer a { color: var(--c-on-navy); }
.c-footer a:hover { color: var(--c-gold); }
/* Four explicit columns, brand column widest. auto-fit was fitting only four
   of five at container width and orphaning the fifth on its own row. */
.c-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 44px 40px;
}
.c-footer__mark { font-family: var(--c-display); font-size: 32px; line-height: 1; color: #fff; margin: 0 0 10px; }
.c-footer__tag { margin: 0; font-family: var(--c-display); font-style: italic; font-size: 19px; color: var(--c-on-navy-dim); }
.c-footer__price {
	margin: 18px 0 0;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: var(--c-on-navy-dim);
}
.c-footer__body { margin: 0; line-height: 1.8; font-size: 15px; }

@media (max-width: 900px) {
	.c-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
	.c-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
.c-footer__h {
	margin: 0 0 14px;
	font-size: 11.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-gold);
}
.c-footer__menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 15px; }
.c-footer__bottom {
	margin-top: clamp(36px, 5vw, 56px);
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 13px;
	color: var(--c-on-navy-dim);
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	justify-content: space-between;
}

/* ----------------------------------------------------------- responsive --- */

@media (max-width: 900px) {
	.c-menu-row {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 24px 4px;
	}
	.c-menu-row__actions { justify-content: flex-start; }
	.c-quotes__cols { columns: 1; }
}

@media (max-width: 780px) {
	.c-header { padding: 10px 16px; }
	.c-brand img { height: 56px; }
	.c-brand__place { display: none; }

	/* The header becomes brand + toggle on one row, panel underneath. */
	.c-header { flex-wrap: wrap; gap: 0; }
	.c-navtoggle { display: inline-flex; }

	.c-navwrap { width: 100%; }
	.c-header--js .c-navwrap {
		display: none;
		border-top: 1px solid var(--c-line);
		margin-top: 10px;
	}
	.c-header--js.is-open .c-navwrap { display: block; }

	/* Stacked, full-width rows with real tap targets. `white-space: nowrap` is
	   right on desktop — it stops "Upcoming Menus" breaking mid-label — but a
	   stacked panel wants labels free to wrap. */
	.c-nav {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		font-size: 13px;
		white-space: normal;
	}
	.c-nav > li { border-bottom: 1px solid var(--c-line); }
	.c-nav > li:last-child { border-bottom: 0; }
	.c-nav > li > a { display: block; padding: 15px 2px; }

	/* The reservation CTA stays a filled button rather than another list row. */
	.c-nav .c-nav__cta { border-bottom: 0; margin: 14px 0 6px; }
	.c-nav .c-nav__cta > a { text-align: center; padding: 15px 22px; }

	.c-split--media-right .c-split__media,
	.c-feature--text-right .c-feature__body { order: 0; }
	.c-hero { min-height: 70vh; }
	.c-split__media { min-height: 260px; }
	.c-gallery__grid img { height: 220px; }
	.c-collage img { height: 150px; }
	.c-collage img:first-child { height: 220px; }

	/* Two columns rather than one: at full width a 3:4 portrait is taller than
	   the phone, so four of them turn the team page into a scroll marathon. */
	.c-team__grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 26px 18px; }
	.c-person__name { font-size: 21px; }
	.c-person__bio { font-size: 15px; }
}

/* Nothing in this design is allowed to scroll the page sideways. A single
   overflowing element (a long unbroken word, a wide embed) otherwise widens the
   whole document and every section inherits the wrong width. */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

/* A flex item defaults to `min-width: auto`, which refuses to shrink below its
   own min-content. The centred hero and CTA blocks are flex items, so on a
   phone their content set the floor and the text ran off the screen rather than
   wrapping. `min-width: 0` lets them shrink so the text reflows instead. */
.c-hero__inner,
.c-cta__inner,
.c-header > * {
	min-width: 0;
	max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
