

:root {
  --color-bg:           #F5F2EC;
  --color-surface:      #EAE5DC;
  --color-surface-alt:  #E2DDD4;
  --color-border:       #D4CEC5;
  --color-text:         #1A1918;
  --color-text-muted:   #7A6E64;
  --color-accent:       #6B5744;
  --color-accent-light: #9B8B7C;
  --color-dark:         #1A1918;
  --color-white:        #FFFFFF;

  --font-sans:   'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Yu Gothic', sans-serif;
  --font-serif:  'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', 'Georgia', serif;

  --max-width:   1160px;
  --gutter:      2rem;
  --section-gap: 6rem;
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-text);
}

p {
  line-height: 1.85;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

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

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-gap);
}

.photo-placeholder {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, var(--color-border) 25%, transparent 25%),
    linear-gradient(225deg, var(--color-border) 25%, transparent 25%),
    linear-gradient(315deg, var(--color-border) 25%, transparent 25%),
    linear-gradient(45deg,  var(--color-border) 25%, transparent 25%);
  background-size: 24px 24px;
  background-position: 0 0, 12px 0, 12px -12px, 0 12px;
  opacity: 0.22;
}

.placeholder-label {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: var(--color-surface);
  padding: 0.3em 0.8em;
  border: 1px solid var(--color-border);
}

.placeholder-hero     { height: 580px; }
.placeholder-portrait { aspect-ratio: 3 / 4; }
.placeholder-square   { aspect-ratio: 1 / 1; }
.placeholder-landscape{ aspect-ratio: 16 / 9; }
.placeholder-season   { aspect-ratio: 4 / 3; }
.placeholder-gallery  { aspect-ratio: 1 / 1; }
.placeholder-gallery-wide  { aspect-ratio: 2 / 1; }
.placeholder-gallery-tall  { min-height: 100%; aspect-ratio: unset; }

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 0.9875rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 0.9875rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.85;
  text-align: center;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header-center .section-label {
  display: inline-block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding-block: 1.25rem;
}

.site-header.scrolled {
  border-bottom-color: var(--color-accent-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.header-brand:hover {
  text-decoration: none;
}

.header-logo {
  display: block;
  flex-shrink: 0;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.brand-jp {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.brand-en {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-section {
  padding-block: 0;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-container {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.hero-visual {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(135deg, rgba(245, 242, 236, 0.95) 0%, rgba(245, 242, 236, 0.85) 50%, rgba(245, 242, 236, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem var(--gutter);
  z-index: 10;
}

.hero-content {
  max-width: 580px;
  position: relative;
  z-index: 20;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
  color: var(--color-text);
}

.hero-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  max-width: 440px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

.philosophy-section {
  background-color: var(--color-surface);
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.philosophy-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
}

.philosophy-kanji {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1;
}

.philosophy-item h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.875rem;
  letter-spacing: 0.05em;
}

.philosophy-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.85;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.season-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.season-card-body {
  padding: 1.5rem;
}

.season-kanji {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1;
}

.season-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  letter-spacing: 0.04em;
}

.season-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.gallery-section {
  background-color: var(--color-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 0.875rem;
}

.gallery-item { overflow: hidden; }

.gallery-tall {
  grid-row: span 2;
  height: 100%;
}

.gallery-tall .photo-placeholder {
  height: 100%;
  aspect-ratio: unset;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-wide .photo-placeholder {
  aspect-ratio: 2 / 1;
  height: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.product-card-head {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.product-badge {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.25em 0.6em;
  font-family: var(--font-serif);
  margin-bottom: 0.875rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  letter-spacing: 0.03em;
}

.product-sub {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 1.5rem;
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.product-price small {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-text-muted);
  display: block;
}

.btn {
  display: inline-block;
  padding: 0.625rem 1.375rem;
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  text-decoration: none;
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
}

.master-section {
  background-color: var(--color-surface);
}

.master-name {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
}

.master-title {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}

.master-credentials {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.master-credentials li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.master-credentials li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
  top: 0.15em;
}

.news-list {
  max-width: 820px;
  margin-inline: auto;
}

.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2.5rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.news-item:first-child {
  border-top: 1px solid var(--color-border);
}

.news-date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  padding-top: 0.2rem;
  line-height: 1.5;
}

.news-tag {
  display: inline-block;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 0.6rem;
  padding: 0.2em 0.6em;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.news-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.news-title a {
  color: var(--color-text);
}

.news-title a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.news-excerpt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.contacts-section {
  background-color: var(--color-dark);
}

.contacts-section .section-label {
  color: var(--color-accent-light);
}

.contacts-section .section-title {
  color: var(--color-white);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-item {
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.contact-icon {
  color: var(--color-accent-light);
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.contact-item h3 {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--color-accent-light);
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  font-family: var(--font-sans);
  font-weight: 400;
}

.contact-item a,
.contact-item address {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.7;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem var(--gutter);
  z-index: 999;
  max-height: 100vh;
  overflow-y: auto;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.cookie-banner-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-content a {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner-content a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  white-space: nowrap;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  letter-spacing: 0.04em;
}

.cookie-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-accept {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent-light);
}

.cookie-btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.7);
}

.cookie-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.cookie-customize-panel {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 2rem;
}

.cookie-customize-panel.visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-customize-panel > div {
  background-color: var(--color-bg);
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-customize-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-customize-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0;
  color: var(--color-text);
}

.cookie-customize-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-customize-close:hover {
  color: var(--color-text);
}

.cookie-customize-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-category-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--color-text);
}

.cookie-category-label input {
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.cookie-category-label input:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-category-desc {
  margin: 0 0 0 2.25rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cookie-customize-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
}

.cookie-customize-footer .btn {
  margin: 0;
}

.photo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.season-card .photo-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

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

.section-center .two-col {
  text-align: center;
}

.section-center .two-col > div:first-child {
  text-align: center;
}

.section-center .section-header-center {
  margin-bottom: 3.5rem;
}

.site-footer {
  background-color: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-primary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.footer-brand:hover {
  text-decoration: none;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.footer-brand .brand-jp {
  font-family: var(--font-serif);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 400;
}

.footer-brand .brand-en {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  letter-spacing: 0.04em;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-section-title {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0;
}

.footer-section nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.footer-section a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-contact a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer-nav a:hover {
  color: var(--color-white);
  text-decoration: none;
}

@media (max-width: 1024px) {
  :root { --section-gap: 5rem; }

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

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

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

  .gallery-tall {
    grid-row: span 1;
  }

  .gallery-tall .photo-placeholder {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .gallery-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 1.25rem;
    --section-gap: 4rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .two-col-reverse {
    direction: ltr;
  }

  .three-col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .four-col {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-nav ul {
    justify-content: flex-start;
  }

  .placeholder-hero {
    height: 380px;
  }

  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .gallery-wide .photo-placeholder {
    aspect-ratio: 1 / 1;
  }
}
