/* ==========================================================================
   Antalya Balik — "Salt & Paper" front-page design system.
   Loaded only on the site front page (front-page.php uses the sf-* markup).
   Warm editorial fishmonger's-counter aesthetic — no ocean gradients, no
   waves, no bubbles. Nearly static; only a small guarded card-lift remains.
   ========================================================================== */

.sea-fish { overflow-x: hidden; }

.sf-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* ==========================================================================
   Counter Rule — reusable 2px saffron line broken at centre by an ink fish.
   Used under section heads and as the band divider between sections.
   ========================================================================== */
.sf-counter-rule {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	margin: 1rem auto 1.25rem;
	max-width: 320px;
	color: var(--ab-ink);
}
.sf-counter-rule::before,
.sf-counter-rule::after {
	content: '';
	flex: 1;
	height: 2px;
	background: var(--ab-saffron);
}
.sf-counter-rule svg { flex: 0 0 auto; width: 26px; height: 15px; display: block; color: var(--ab-ink); }

/* Section-head variant sits left-aligned when a section head is left-aligned. */
.sf-section__head .sf-counter-rule { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Shared section header + alternating bands
   ========================================================================== */
.sf-section { padding: 5.5rem 0; background: var(--ab-bone); }
.sf-section--linen { background: var(--ab-linen); }
.sf-section__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.sf-section__kicker {
	display: inline-block;
	font-family: var(--ab-font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ab-saffron-deep);
	margin-bottom: 0.25rem;
}
.sf-section__kicker--light { color: var(--ab-saffron); }
.sf-section__title {
	font-family: var(--ab-font-head);
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: -0.01em;
	margin: 0 0 0.75rem;
	color: var(--ab-ink);
}
.sf-section__lead { color: var(--ab-ink-soft); margin: 0; font-size: 1.05rem; }

/* ==========================================================================
   Buttons (hooks reused from the old design, restyled label-like)
   ========================================================================== */
.sf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.8rem;
	border-radius: 2px;
	font-family: var(--ab-font-body);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	border: 0;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
/* Primary — solid deep-saffron (white text clears AA 4.5:1), white text. */
.sf-btn--coral,
.sf-btn--primary { background: var(--ab-saffron-deep); color: #fff; }
.sf-btn--coral:hover,
.sf-btn--primary:hover { background: #7d3309; color: #fff; transform: translateY(-2px); }
/* Secondary — ink-outline ghost. */
.sf-btn--ghost {
	background: transparent;
	color: var(--ab-ink);
	border: 2px solid var(--ab-ink);
}
.sf-btn--ghost:hover { background: var(--ab-ink); color: var(--ab-bone); transform: translateY(-2px); }
.sf-btn--block { width: 100%; }

/* ==========================================================================
   HERO — calm editorial masthead on bone, asymmetric 2-col, static.
   ========================================================================== */
.sf-hero {
	position: relative;
	background: var(--ab-bone);
	color: var(--ab-ink);
	padding: clamp(4rem, 10vw, 8rem) 1.25rem;
	overflow: hidden;
}
.sf-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 55% 45%;
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
	text-align: left;
}
.sf-hero__copy { min-width: 0; }
.sf-hero__eyebrow {
	font-family: var(--ab-font-body);
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--ab-saffron-deep);
	margin: 0 0 1.2rem;
}
.sf-hero__title {
	font-family: var(--ab-font-head);
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin: 0 0 1rem;
	color: var(--ab-ink);
}
.sf-hero__subtitle {
	font-family: var(--ab-font-head);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.1rem, 1.8vw, 1.4rem);
	line-height: 1.5;
	color: var(--ab-ink-soft);
	margin: 0 0 1.5rem;
	max-width: 40ch;
}
.sf-hero__text { font-size: 1.1rem; margin: 0 0 2rem; color: var(--ab-ink-soft); max-width: 46ch; }
.sf-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Counter Rule sits under the headline, left-aligned. */
.sf-hero__rule { margin: 0 0 1.5rem; max-width: 300px; justify-content: flex-start; }
.sf-hero__rule::before { display: none; }

/* Hero specimen plate (a new product-plate <img> on paper). */
.sf-hero__plate {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sf-hero__plate img {
	width: 100%;
	max-width: 480px;
	height: auto;
	border: 1px solid var(--ab-line);
	border-radius: 2px;
	background: var(--ab-paper);
	box-shadow: 0 24px 60px var(--ab-shadow-color);
}

/* ==========================================================================
   FRESH CATCH (products grid supplied by WooCommerce loop)
   ========================================================================== */
.sf-catch { background: var(--ab-bone); }

/* ==========================================================================
   SEA-TO-TABLE STORY — large paper "specimen plate" still-life + pull-quote.
   ========================================================================== */
.sf-about { background: var(--ab-linen); }
.sf-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.sf-about__media { position: relative; }
.sf-about__plate {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: var(--ab-paper);
	border: 1px solid var(--ab-line);
	border-radius: 2px;
	box-shadow: 0 20px 50px var(--ab-shadow-color);
}
.sf-about__plate img {
	width: 100%;
	max-width: 440px;
	height: auto;
	display: block;
	border-radius: 2px;
}
.sf-about__quote {
	margin: 1.75rem 0 0;
	font-family: var(--ab-font-head);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.15rem, 2vw, 1.5rem);
	line-height: 1.5;
	color: var(--ab-ink);
	border-left: 2px solid var(--ab-saffron);
	padding-left: 1.1rem;
}

.sf-about__text .sf-section__title { text-align: left; }
.sf-about__text .sf-counter-rule { margin-left: 0; margin-right: auto; justify-content: flex-start; }
.sf-about__text .sf-counter-rule::before { display: none; }
.sf-about__text p { color: var(--ab-ink-soft); font-size: 1.05rem; line-height: 1.8; }
.sf-about__list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.7rem; }
.sf-about__list li { position: relative; padding-left: 1.9rem; color: var(--ab-ink); font-weight: 500; }
.sf-about__list li::before {
	content: '';
	position: absolute;
	left: 0; top: 0.4em;
	width: 1rem; height: 1rem;
	background: var(--ab-olive);
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}

/* ==========================================================================
   NOTIFY CTA — warm ink panel (re-skinned sf-reserve, no form).
   ========================================================================== */
.sf-reserve {
	position: relative;
	background: var(--ab-ink);
	color: var(--ab-bone);
	padding: 5.5rem 0;
	overflow: hidden;
}
.sf-reserve__title {
	font-family: var(--ab-font-head);
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	margin: 0.5rem 0 1rem;
	color: var(--ab-bone);
}
.sf-reserve__text { color: rgba(246, 241, 231, 0.85); font-size: 1.05rem; line-height: 1.7; margin: 0 0 1.5rem; }
/* On the dark ink band the accent must LIGHTEN to clear AA (≈6:1 on ink). */
.sf-reserve .sf-section__kicker--light { color: var(--ab-saffron-light); }
.sf-reserve .sf-btn--coral { background: var(--ab-saffron-deep); color: #fff; }
.sf-reserve .sf-btn--coral:hover { background: #7d3309; color: #fff; }
/* Counter Rule on the dark ink band: fish glyph reads in bone. */
.sf-reserve .sf-counter-rule { color: var(--ab-bone); }
.sf-reserve .ab-notify__inner .sf-counter-rule { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Reveal-on-scroll (progressive enhancement via .sf-reveal / .sf-in)
   ========================================================================== */
.sf-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sf-reveal.sf-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
	.sf-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
	.sf-hero__plate { order: -1; }
	.sf-about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.sf-about__media { max-width: 460px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
	.sf-section { padding: 4rem 0; }
	.sf-hero__actions { flex-direction: column; align-items: stretch; }
	.sf-hero__actions .sf-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.sf-btn:hover { transform: none; }
	.sf-reveal { opacity: 1; transform: none; transition: none; }
}
