/*
Theme Name: 京都利休 東海店
Theme URI: https://kyoto-rikyu.jp/
Author: 京都利休 東海店
Description: 京都利休の生わらび餅 東海店のための、写真を活かしたモダンな和風WordPressテーマです。
Version: 1.0.0
Text Domain: rikyu-tokai
*/

:root {
	--cream: #f5f4e2;
	--ink: #241b16;
	--red: #8f2f26;
	--gold: #aa8142;
	--serif: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
	--sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
	--shell: min(1160px, calc(100vw - 64px));
	--header-height: 88px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: 0.045em;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

p,
h1,
h2,
h3,
figure,
dl,
dd {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	font-family: var(--serif);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.08em;
}

button,
input,
textarea,
select {
	font: inherit;
}

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.section {
	padding-block: 120px;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	color: var(--red);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 26px;
	height: 1px;
	background: currentColor;
	content: "";
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--cream);
	color: var(--ink);
}

.button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 13px 28px;
	border: 1px solid transparent;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button-primary {
	background: var(--red);
	color: var(--cream);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--ink);
}

.button-outline {
	border-color: var(--ink);
	color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
	background: var(--ink);
	color: var(--cream);
}

.button-light {
	border-color: var(--cream);
	color: var(--cream);
}

.button-light:hover,
.button-light:focus-visible {
	background: var(--cream);
	color: var(--ink);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 3px;
	border-bottom: 1px solid currentColor;
	font-size: 13px;
	font-weight: 600;
}

.text-link:hover,
.text-link:focus-visible {
	color: var(--red);
}

/* Header */
.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	height: var(--header-height);
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
	background: color-mix(in srgb, var(--cream) 95%, transparent);
	backdrop-filter: blur(12px);
	transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 28px color-mix(in srgb, var(--ink) 10%, transparent);
}

.admin-bar .site-header {
	top: 32px;
}

.header-inner {
	display: flex;
	width: min(1320px, calc(100vw - 48px));
	height: 100%;
	align-items: center;
	justify-content: space-between;
	margin-inline: auto;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 16px;
}

.site-brand img,
.site-brand .custom-logo {
	width: 168px;
	height: auto;
}

.site-brand > span {
	padding-left: 16px;
	border-left: 1px solid color-mix(in srgb, var(--ink) 35%, transparent);
	font-family: var(--serif);
	font-size: 13px;
	letter-spacing: 0.18em;
}

.primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 34px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	position: relative;
	display: block;
	padding-block: 10px;
	font-family: var(--serif);
	font-size: 14px;
	letter-spacing: 0.08em;
}

.primary-nav a::after {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	height: 1px;
	background: var(--red);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.primary-nav li:last-child a {
	padding: 10px 20px;
	background: var(--ink);
	color: var(--cream);
}

.primary-nav li:last-child a::after {
	display: none;
}

.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 13px 10px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.nav-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 26px;
	height: 1px;
	margin: 6px auto;
	background: var(--ink);
	transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
	position: relative;
	display: grid;
	min-height: calc(100svh - var(--header-height));
	grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
	overflow: hidden;
}

.hero-copy {
	z-index: 2;
	display: flex;
	max-width: 590px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 80px 5vw 118px max(5vw, calc((100vw - 1320px) / 2));
}

.hero-copy .eyebrow span {
	color: var(--ink);
}

.hero-copy h1 {
	margin-bottom: 30px;
	font-size: clamp(42px, 4.3vw, 72px);
	line-height: 1.4;
}

.hero-description {
	max-width: 480px;
	margin-bottom: 40px;
	font-family: var(--serif);
	font-size: 16px;
	line-height: 2.2;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 28px;
}

.hero-visual {
	position: relative;
	min-height: 650px;
	background: var(--ink);
}

.hero-visual::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, color-mix(in srgb, var(--ink) 20%, transparent), transparent 38%);
	content: "";
	pointer-events: none;
}

.hero-visual > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 48% center;
}

.vertical-note {
	position: absolute;
	z-index: 2;
	top: 52px;
	right: 42px;
	margin: 0;
	color: var(--cream);
	font-family: var(--serif);
	font-size: 18px;
	letter-spacing: 0.22em;
	line-height: 2.1;
	writing-mode: vertical-rl;
}

.hero-stamp {
	position: absolute;
	z-index: 2;
	right: 38px;
	bottom: 42px;
	display: grid;
	width: 76px;
	height: 76px;
	place-items: center;
	border: 1px solid var(--cream);
	background: var(--red);
	color: var(--cream);
	font-family: var(--serif);
	font-size: 15px;
	line-height: 1.3;
	text-align: center;
	transform: rotate(-4deg);
}

.hero-hours {
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	display: flex;
	width: min(550px, 42vw);
	height: 74px;
	align-items: center;
	gap: 18px;
	padding: 12px max(5vw, calc((100vw - 1320px) / 2));
	padding-right: 24px;
	background: var(--ink);
	color: var(--cream);
	white-space: nowrap;
}

.hero-hours span,
.hero-hours small {
	font-size: 11px;
	letter-spacing: 0.12em;
}

.hero-hours strong {
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 500;
}

/* Home sections */
.intro {
	position: relative;
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 9vw;
}

.intro-heading h2,
.section-heading h2 {
	margin-bottom: 0;
	font-size: clamp(34px, 4vw, 54px);
}

.intro-copy {
	max-width: 650px;
}

.intro-copy .lead {
	margin-bottom: 30px;
	font-family: var(--serif);
	font-size: 21px;
	line-height: 2;
}

.intro-mark {
	position: absolute;
	right: 0;
	bottom: 0;
	color: color-mix(in srgb, var(--gold) 16%, transparent);
	font-family: var(--serif);
	font-size: 132px;
	line-height: 1;
	pointer-events: none;
	transform: rotate(-7deg);
}

.healthy-pickup {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	padding-block: 0;
	background: color-mix(in srgb, var(--gold) 10%, var(--cream));
}

.healthy-pickup-image {
	position: relative;
	min-height: 660px;
	overflow: hidden;
}

.healthy-pickup-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.healthy-pickup-label {
	position: absolute;
	top: 0;
	left: 38px;
	padding: 24px 13px;
	background: var(--red);
	color: var(--cream);
	font-family: var(--serif);
	font-size: 13px;
	letter-spacing: 0.22em;
	writing-mode: vertical-rl;
}

.healthy-pickup-copy {
	display: flex;
	max-width: 620px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 80px clamp(40px, 7vw, 100px);
}

.healthy-pickup-copy h2 {
	margin-bottom: 28px;
	font-size: clamp(38px, 4.5vw, 58px);
}

.healthy-lead {
	margin-bottom: 30px;
	font-family: var(--serif);
	line-height: 2.05;
}

.healthy-pickup-types {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 38px;
	border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}

.healthy-pickup-types > div {
	padding: 18px 12px;
}

.healthy-pickup-types > div + div {
	border-left: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}

.healthy-pickup-types span {
	display: block;
	margin-bottom: 5px;
	color: var(--red);
	font-size: 10px;
	font-weight: 600;
}

.healthy-pickup-types strong {
	font-family: var(--serif);
	font-size: 14px;
	font-weight: 500;
}

.signature {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	padding-block: 0;
	background: var(--ink);
	color: var(--cream);
}

.signature-image {
	min-height: 680px;
	overflow: hidden;
}

.signature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.signature-copy {
	display: flex;
	max-width: 570px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 80px clamp(40px, 7vw, 110px);
}

.signature-copy .eyebrow {
	color: var(--gold);
}

.signature-copy h2 {
	margin-bottom: 30px;
	font-size: clamp(38px, 4.5vw, 62px);
}

.signature-copy h2 span {
	color: var(--gold);
}

.signature-copy > p:not(.eyebrow) {
	margin-bottom: 30px;
}

.signature-copy .button-outline {
	border-color: var(--cream);
	color: var(--cream);
}

.signature-copy .button-outline:hover {
	background: var(--cream);
	color: var(--ink);
}

.flavor-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	padding: 0;
	margin: 0 0 38px;
	list-style: none;
	font-family: var(--serif);
	font-size: 13px;
}

.flavor-list li::before {
	margin-right: 8px;
	color: var(--gold);
	content: "・";
}

.centered {
	max-width: 720px;
	margin: 0 auto 64px;
	text-align: center;
}

.centered .eyebrow {
	justify-content: center;
}

.centered > p:last-child {
	margin-top: 20px;
}

.latte-gallery {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.latte-gallery figure {
	position: relative;
	margin: 0;
}

.latte-gallery figure:nth-child(even) {
	margin-top: 48px;
}

.latte-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.latte-gallery figcaption {
	padding-top: 14px;
	border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
	font-family: var(--serif);
	font-size: 13px;
	text-align: center;
}

.shop-guide {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	padding-block: 0;
	background: color-mix(in srgb, var(--gold) 11%, var(--cream));
}

.shop-guide-photo {
	position: relative;
	min-height: 640px;
	overflow: hidden;
}

.shop-guide-photo::before,
.store-visual::before {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	left: 0;
	height: 42px;
	background: var(--ink);
	content: "";
	pointer-events: none;
}

.shop-guide-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shop-guide-copy {
	display: flex;
	max-width: 620px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 80px clamp(40px, 7vw, 100px);
}

.shop-guide-copy h2 {
	margin-bottom: 36px;
	font-size: clamp(34px, 4vw, 52px);
}

.store-summary {
	width: 100%;
	margin-bottom: 38px;
}

.store-summary div {
	display: grid;
	grid-template-columns: 90px 1fr;
	padding: 12px 0;
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
}

.store-summary dt {
	font-size: 12px;
	font-weight: 600;
}

.store-summary dd {
	margin: 0;
	font-size: 13px;
}

.news-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 54px;
}

.news-heading h2 {
	font-size: clamp(34px, 4vw, 50px);
}

.news-list article {
	border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}

.news-list article:last-child {
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}

.news-list article a {
	display: grid;
	grid-template-columns: 120px 1fr 30px;
	align-items: center;
	gap: 22px;
	padding: 27px 12px;
	transition: color 180ms ease, padding 180ms ease;
}

.news-list article a:hover,
.news-list article a:focus-visible {
	padding-inline: 22px;
	color: var(--red);
}

.news-list time {
	font-size: 12px;
	letter-spacing: 0.1em;
}

.news-list h3 {
	margin: 0;
	font-family: var(--sans);
	font-size: 15px;
	font-weight: 500;
}

.social-cta {
	display: flex;
	width: var(--shell);
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	padding-inline: clamp(32px, 8vw, 110px);
	margin: 0 auto 120px;
	background: var(--red);
	color: var(--cream);
}

.social-cta .eyebrow {
	color: var(--cream);
}

.social-cta h2 {
	margin-bottom: 18px;
	font-size: clamp(32px, 4vw, 50px);
}

.social-cta p:last-child {
	margin-bottom: 0;
}

/* Inner page common */
.page-title {
	padding-top: 145px;
	padding-bottom: 88px;
}

.page-title h1 {
	max-width: 900px;
	margin-bottom: 28px;
	font-size: clamp(42px, 6vw, 74px);
}

.page-title h1 span {
	color: var(--red);
	font-size: 0.58em;
}

.page-title > p:last-child {
	max-width: 620px;
	font-family: var(--serif);
	font-size: 17px;
	line-height: 2;
}

.page-title-compact {
	padding-top: 130px;
	padding-bottom: 90px;
}

.page-hero {
	position: relative;
	display: grid;
	min-height: 680px;
	grid-template-columns: 0.8fr 1.2fr;
	background: var(--ink);
	color: var(--cream);
}

.page-hero-inner {
	display: flex;
	width: auto;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 80px 6vw 80px max(5vw, calc((100vw - 1320px) / 2));
}

.page-hero .eyebrow {
	color: var(--gold);
}

.page-hero h1 {
	margin-bottom: 32px;
	font-size: clamp(40px, 5vw, 68px);
}

.page-hero-inner > p:last-child {
	max-width: 480px;
}

.page-hero > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-editor {
	padding-bottom: 0;
}

.editor-content > *:first-child {
	margin-top: 0;
}

.editor-content h2 {
	margin: 2.2em 0 0.8em;
	font-size: clamp(28px, 3vw, 40px);
}

.editor-content h3 {
	margin: 2em 0 0.6em;
	font-size: 24px;
}

.editor-content a {
	color: var(--red);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.editor-content img {
	margin-block: 42px;
}

.editor-content blockquote {
	padding: 30px 38px;
	margin: 42px 0;
	border-left: 3px solid var(--gold);
	background: color-mix(in srgb, var(--gold) 10%, var(--cream));
	font-family: var(--serif);
	font-size: 19px;
}

/* Menu */
.healthy-menu-section {
	background: color-mix(in srgb, var(--gold) 10%, var(--cream));
	scroll-margin-top: calc(var(--header-height) + 20px);
}

.healthy-menu-intro {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: end;
	gap: 9vw;
	margin-bottom: 62px;
}

.healthy-menu-intro h2 {
	margin-bottom: 0;
	font-size: clamp(40px, 5vw, 64px);
}

.healthy-menu-intro > p {
	margin-bottom: 0;
	font-family: var(--serif);
	font-size: 16px;
	line-height: 2.1;
}

.healthy-menu-visual {
	position: relative;
	margin: 0 0 86px;
}

.healthy-menu-visual img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.healthy-menu-visual figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 13px 20px;
	background: var(--ink);
	color: var(--cream);
	font-size: 10px;
}

.healthy-category-heading {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 28px;
}

.healthy-category-heading > span {
	display: grid;
	width: 52px;
	height: 52px;
	flex: 0 0 auto;
	place-items: center;
	border: 1px solid var(--red);
	color: var(--red);
	font-family: var(--serif);
}

.healthy-category-heading p {
	margin-bottom: 2px;
	color: var(--red);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
}

.healthy-category-heading h3 {
	margin: 0;
	font-size: clamp(24px, 3vw, 34px);
}

.healthy-category-yogurt {
	margin-top: 70px;
}

.healthy-product-grid {
	display: grid;
	gap: 18px;
}

.healthy-product-grid-acai {
	grid-template-columns: repeat(3, 1fr);
}

.healthy-product-grid-yogurt {
	grid-template-columns: repeat(2, 1fr);
}

.healthy-product-grid article {
	position: relative;
	padding: 32px;
	border-top: 3px solid var(--red);
	background: var(--cream);
}

.healthy-product-number {
	position: absolute;
	top: 18px;
	right: 20px;
	color: color-mix(in srgb, var(--gold) 58%, var(--cream));
	font-family: var(--serif);
	font-size: 28px;
	line-height: 1;
}

.healthy-product-grid h4 {
	position: relative;
	padding-right: 32px;
	margin: 0 0 15px;
	font-size: 19px;
}

.healthy-product-grid p {
	min-height: 50px;
	margin-bottom: 24px;
	font-size: 11px;
	line-height: 1.85;
}

.healthy-product-grid strong {
	display: block;
	padding-top: 15px;
	border-top: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 500;
}

.healthy-product-grid small {
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 400;
}

.healthy-menu-section .menu-note {
	margin-bottom: 0;
}

.menu-feature {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	align-items: center;
	gap: 7vw;
}

.menu-feature-copy h2 {
	margin-bottom: 24px;
	font-size: clamp(46px, 6vw, 80px);
}

.menu-feature-copy > p:not(.eyebrow):not(.menu-price) {
	max-width: 470px;
}

.menu-feature-image {
	padding: 7%;
	background: color-mix(in srgb, var(--gold) 11%, var(--cream));
}

.menu-price {
	padding-top: 26px;
	margin-top: 28px;
	border-top: 1px solid color-mix(in srgb, var(--ink) 25%, transparent);
	font-family: var(--serif);
	font-size: 26px;
}

.menu-price span {
	margin-right: 14px;
	font-size: 12px;
}

.menu-price small {
	display: block;
	margin-top: 8px;
	font-family: var(--sans);
	font-size: 10px;
}

.flavor-section {
	background: color-mix(in srgb, var(--gold) 11%, var(--cream));
}

.flavor-products {
	width: 100%;
	margin: 0 auto 72px;
}

.flavor-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}

.flavor-grid article {
	padding: 38px 24px;
	border-right: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}

.flavor-grid article:last-child {
	border: 0;
}

.flavor-grid span {
	color: var(--red);
	font-family: var(--serif);
	font-size: 12px;
}

.flavor-grid h3 {
	margin: 14px 0 16px;
	font-size: 19px;
}

.flavor-grid p {
	margin: 0;
	font-size: 12px;
	line-height: 1.85;
}

.latte-menu-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.latte-menu-grid article {
	display: grid;
	grid-template-columns: 46% 54%;
	align-items: center;
	background: color-mix(in srgb, var(--gold) 9%, var(--cream));
}

.latte-menu-grid article:last-child {
	grid-column: 1 / -1;
	width: calc(50% - 12px);
	margin-inline: auto;
}

.latte-menu-grid img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.latte-menu-grid article > div {
	padding: 28px;
}

.latte-menu-grid h3 {
	margin-bottom: 12px;
	font-size: 20px;
}

.latte-menu-grid p {
	font-size: 12px;
	line-height: 1.8;
}

.latte-menu-grid strong {
	display: block;
	padding-top: 12px;
	border-top: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
	font-family: var(--serif);
	font-size: 18px;
}

.latte-menu-grid small,
.menu-note {
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 400;
}

.menu-note {
	margin-top: 28px;
	text-align: center;
}

.gift-banner {
	width: var(--shell);
	padding-inline: clamp(32px, 8vw, 110px);
	margin: 0 auto 120px;
	background: var(--red);
	color: var(--cream);
}

.gift-banner .eyebrow {
	color: var(--cream);
}

.gift-banner h2 {
	font-size: clamp(36px, 5vw, 58px);
}

.gift-banner > p:not(.eyebrow) {
	max-width: 660px;
	margin-bottom: 35px;
}

/* Store */
.store-visual {
	position: relative;
}

.store-visual > img {
	width: 100%;
	max-height: 680px;
	object-fit: cover;
}

.store-visual-note {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	padding: 30px 44px;
	background: var(--red);
	color: var(--cream);
}

.store-visual-note span,
.store-visual-note small {
	font-size: 11px;
}

.store-visual-note strong {
	font-family: var(--serif);
	font-size: 25px;
	font-weight: 500;
}

.store-details {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 8vw;
}

.store-details-heading h2 {
	font-size: clamp(34px, 4vw, 52px);
}

.store-table dl {
	margin: 0;
	border-top: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
}

.store-table dl > div {
	display: grid;
	grid-template-columns: 150px 1fr;
	padding: 20px 10px;
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
}

.store-table dt {
	font-size: 12px;
	font-weight: 600;
}

.store-table dd {
	font-family: var(--serif);
	font-size: 15px;
}

.store-table dd a {
	color: var(--red);
	font-size: 19px;
}

.store-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 30px;
}

.store-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	border: 1px solid var(--ink);
	font-size: 12px;
	font-weight: 600;
}

.store-links a:hover {
	background: var(--ink);
	color: var(--cream);
}

.map-section {
	height: 520px;
}

.map-section iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(1) sepia(0.12);
}

.access-note {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.access-note > div {
	padding: 42px;
	border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}

.access-note span {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	margin-bottom: 22px;
	background: var(--ink);
	color: var(--cream);
	font-family: var(--serif);
}

.access-note h3 {
	margin-bottom: 12px;
	font-size: 20px;
}

.access-note p {
	margin: 0;
	font-size: 13px;
}

/* Contact + CF7 */
.contact-layout {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 8vw;
	padding-top: 0;
}

.contact-aside {
	align-self: start;
	padding: 38px;
	background: var(--ink);
	color: var(--cream);
}

.contact-aside .eyebrow {
	color: var(--gold);
}

.contact-phone {
	display: block;
	margin-bottom: 8px;
	font-family: var(--serif);
	font-size: clamp(28px, 3vw, 40px);
}

.contact-aside > p:not(.eyebrow) {
	font-size: 12px;
}

.contact-note {
	padding-top: 26px;
	margin-top: 34px;
	border-top: 1px solid color-mix(in srgb, var(--cream) 25%, transparent);
}

.contact-note h2 {
	font-size: 17px;
}

.contact-note p {
	margin: 0;
	font-size: 12px;
}

.contact-form-area {
	min-width: 0;
}

.admin-form-notice,
.empty-message {
	padding: 32px;
	border: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
}

.admin-form-notice a {
	color: var(--red);
	text-decoration: underline;
}

.wpcf7-form p {
	margin-bottom: 28px;
}

.wpcf7-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
}

.wpcf7-form .required,
.wpcf7-form .must {
	margin-left: 8px;
	color: var(--red);
	font-size: 10px;
}

.wpcf7-form-control-wrap {
	display: block;
	margin-top: 8px;
}

.wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.wpcf7 textarea,
.wpcf7 select {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid color-mix(in srgb, var(--ink) 34%, transparent);
	border-radius: 0;
	outline: 0;
	background: color-mix(in srgb, var(--cream) 82%, transparent);
	color: var(--ink);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
	border-color: var(--red);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--red) 18%, transparent);
}

.wpcf7 textarea {
	min-height: 180px;
	resize: vertical;
}

.wpcf7-list-item {
	margin: 0 20px 0 0;
}

.wpcf7 input[type="submit"] {
	min-width: 220px;
	min-height: 58px;
	padding: 14px 30px;
	border: 1px solid var(--red);
	border-radius: 0;
	background: var(--red);
	color: var(--cream);
	font-weight: 600;
	letter-spacing: 0.12em;
	cursor: pointer;
}

.wpcf7 input[type="submit"]:hover {
	border-color: var(--ink);
	background: var(--ink);
}

.wpcf7-not-valid-tip {
	margin-top: 5px;
	color: var(--red);
	font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
	padding: 14px 18px;
	margin: 26px 0 0;
	border: 1px solid var(--red);
	color: var(--ink);
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--gold);
}

.wpcf7-spinner {
	background-color: var(--ink);
}

/* Archives and articles */
.archive-section {
	padding-top: 0;
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 34px;
}

.news-card {
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 30%, transparent);
}

.news-card > a {
	display: block;
	height: 100%;
}

.news-card-image {
	overflow: hidden;
	background: var(--ink);
}

.news-card-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 350ms ease;
}

.news-card a:hover .news-card-image img {
	transform: scale(1.035);
}

.news-card-body {
	padding: 24px 6px 28px;
}

.news-card time {
	color: var(--red);
	font-size: 11px;
}

.news-card h2 {
	margin: 10px 0 14px;
	font-size: 20px;
}

.news-card p {
	display: -webkit-box;
	overflow: hidden;
	font-size: 12px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 70px;
}

.nav-links .page-numbers {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid color-mix(in srgb, var(--ink) 30%, transparent);
	font-size: 12px;
}

.nav-links .page-numbers.current,
.nav-links a:hover {
	background: var(--ink);
	color: var(--cream);
}

.nav-links .prev,
.nav-links .next {
	width: auto;
	padding-inline: 16px;
}

.single-article,
.default-page {
	max-width: 900px;
	padding-top: 130px;
	padding-bottom: 130px;
}

.single-header {
	margin-bottom: 58px;
}

.single-header time {
	display: block;
	margin-bottom: 18px;
	color: var(--red);
	font-size: 12px;
}

.single-header h1 {
	font-size: clamp(34px, 5vw, 56px);
}

.single-thumbnail {
	margin-bottom: 58px;
}

.single-thumbnail img {
	width: 100%;
	max-height: 650px;
	object-fit: cover;
}

.single-content {
	font-size: 16px;
}

.single-footer {
	padding-top: 64px;
	margin-top: 64px;
	border-top: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
	text-align: center;
}

.not-found {
	padding-top: 160px;
	padding-bottom: 180px;
}

.not-found h1 {
	font-size: clamp(36px, 6vw, 68px);
}

.not-found .button {
	margin-top: 28px;
}

/* Footer */
.site-footer {
	padding-top: 80px;
	background: var(--ink);
	color: var(--cream);
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 7vw;
	padding-bottom: 60px;
}

.footer-brand img {
	width: 210px;
	filter: brightness(0) invert(1);
}

.footer-brand p {
	margin: 12px 0 0;
	font-family: var(--serif);
	font-size: 13px;
}

.footer-info p {
	font-size: 12px;
}

.footer-info a {
	font-family: var(--serif);
	font-size: 22px;
}

.footer-nav .menu {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 9px 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-nav a {
	font-family: var(--serif);
	font-size: 12px;
}

.footer-nav a:hover {
	color: var(--gold);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 20px;
	border-top: 1px solid color-mix(in srgb, var(--cream) 18%, transparent);
}

.footer-bottom p,
.footer-bottom a {
	margin: 0;
	font-size: 10px;
}

@media (max-width: 1050px) {
	:root {
		--header-height: 78px;
	}

	.nav-toggle {
		display: block;
	}

	.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.primary-nav {
		position: fixed;
		top: var(--header-height);
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		padding: 48px 28px;
		background: var(--cream);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav .menu {
		width: min(480px, 100%);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin-inline: auto;
	}

	.primary-nav li {
		border-bottom: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
	}

	.primary-nav a,
	.primary-nav li:last-child a {
		padding: 17px 8px;
		background: transparent;
		color: var(--ink);
		font-size: 17px;
	}

	.hero {
		min-height: auto;
		grid-template-columns: 0.9fr 1.1fr;
	}

	.hero-copy {
		padding: 70px 5vw 110px;
	}

	.hero-visual {
		min-height: 600px;
	}

	.hero-hours {
		width: 45vw;
		padding-left: 5vw;
	}

	.signature-image,
	.shop-guide-photo,
	.healthy-pickup-image {
		min-height: 560px;
	}

	.flavor-grid {
		grid-template-columns: repeat(3, 1fr);
		border-bottom: 0;
	}

	.flavor-grid article {
		border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
	}

	.flavor-grid article:nth-child(3) {
		border-right: 0;
	}

	.archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 760px) {
	:root {
		--shell: min(100% - 36px, 600px);
		--header-height: 70px;
	}

	body {
		font-size: 15px;
	}

	.section {
		padding-block: 78px;
	}

	.signature,
	.shop-guide,
	.healthy-pickup {
		padding-block: 0;
	}

	.header-inner {
		width: calc(100% - 28px);
	}

	.admin-bar .site-header {
		top: 46px;
	}

	.site-brand img,
	.site-brand .custom-logo {
		width: 128px;
	}

	.site-brand > span {
		padding-left: 10px;
		font-size: 10px;
	}

	.hero {
		display: flex;
		flex-direction: column;
	}

	.hero-copy {
		max-width: none;
		padding: 66px 24px 54px;
	}

	.hero-copy h1 {
		font-size: clamp(38px, 12vw, 56px);
	}

	.hero-description {
		font-size: 14px;
	}

	.hero-actions {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-visual {
		min-height: 470px;
	}

	.vertical-note {
		top: 26px;
		right: 18px;
		font-size: 14px;
	}

	.hero-stamp {
		right: 20px;
		bottom: 28px;
		width: 62px;
		height: 62px;
	}

	.hero-hours {
		position: static;
		width: 100%;
		height: auto;
		justify-content: center;
		padding: 18px;
	}

	.intro,
	.signature,
	.shop-guide,
	.healthy-pickup,
	.menu-feature,
	.store-details,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.intro {
		gap: 38px;
	}

	.intro-copy .lead {
		font-size: 18px;
	}

	.intro-mark {
		font-size: 80px;
	}

	.signature-image,
	.shop-guide-photo,
	.healthy-pickup-image {
		min-height: 400px;
	}

	.signature-copy,
	.shop-guide-copy,
	.healthy-pickup-copy {
		padding: 65px 24px;
	}

	.signature-copy {
		order: -1;
	}

	.healthy-pickup-copy {
		order: -1;
	}

	.healthy-menu-intro {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 45px;
	}

	.healthy-menu-visual {
		margin-bottom: 64px;
	}

	.healthy-menu-visual figcaption {
		position: static;
		padding: 10px 0 0;
		background: transparent;
		color: var(--ink);
		text-align: right;
	}

	.healthy-product-grid-acai,
	.healthy-product-grid-yogurt {
		grid-template-columns: 1fr;
	}

	.healthy-product-grid p {
		min-height: 0;
	}

	.latte-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 26px 12px;
	}

	.latte-gallery figure:nth-child(even) {
		margin-top: 26px;
	}

	.latte-gallery figure:last-child {
		grid-column: 1 / -1;
		width: calc(50% - 6px);
		margin: 0 auto;
	}

	.news-heading,
	.social-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.news-list article a {
		grid-template-columns: 1fr 24px;
		gap: 8px;
		padding: 20px 4px;
	}

	.news-list time {
		grid-column: 1 / -1;
	}

	.social-cta,
	.gift-banner {
		padding: 68px 28px;
		margin-bottom: 78px;
	}

	.page-title,
	.page-title-compact {
		padding-top: 92px;
		padding-bottom: 60px;
	}

	.page-title h1 {
		font-size: clamp(38px, 11vw, 54px);
	}

	.page-hero {
		display: flex;
		min-height: auto;
		flex-direction: column;
	}

	.page-hero-inner {
		width: 100%;
		padding: 74px 24px;
	}

	.page-hero > img {
		height: 410px;
	}

	.menu-feature {
		gap: 48px;
	}

	.flavor-products {
		margin-bottom: 45px;
	}

	.flavor-grid {
		grid-template-columns: 1fr;
		border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
	}

	.flavor-grid article,
	.flavor-grid article:nth-child(3) {
		padding: 26px 12px;
		border-right: 0;
	}

	.flavor-grid article:last-child {
		border-bottom: 0;
	}

	.latte-menu-grid {
		grid-template-columns: 1fr;
	}

	.latte-menu-grid article:last-child {
		grid-column: auto;
		width: 100%;
	}

	.store-visual {
		width: 100%;
	}

	.store-visual > img {
		height: 440px;
	}

	.store-visual-note {
		right: 18px;
		bottom: 18px;
		padding: 20px 26px;
	}

	.store-details {
		gap: 40px;
	}

	.store-table dl > div {
		grid-template-columns: 100px 1fr;
		gap: 15px;
	}

	.map-section {
		height: 400px;
	}

	.access-note,
	.archive-grid {
		grid-template-columns: 1fr;
	}

	.contact-layout {
		gap: 50px;
	}

	.contact-aside {
		padding: 30px;
	}

	.single-article,
	.default-page {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

@media (max-width: 430px) {
	.site-brand > span {
		display: none;
	}

	.hero-hours small {
		display: none;
	}

	.latte-menu-grid article {
		grid-template-columns: 42% 58%;
	}

	.latte-menu-grid article > div {
		padding: 18px;
	}

	.store-links {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
