@charset "UTF-8";

:root {
  --bg: #f6efe3;
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: #fffaf2;
  --card: rgba(255, 248, 240, 0.92);
  --line: rgba(122, 87, 67, 0.18);
  --text: #51372d;
  --muted: #7d6154;
  --accent: #8f5c45;
  --accent-deep: #5f3f31;
  --leaf: #687c5d;
  --shadow: 0 24px 60px rgba(85, 54, 40, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(220, 182, 144, 0.45), transparent 30%),
    radial-gradient(circle at top right, rgba(104, 124, 93, 0.2), transparent 28%),
    linear-gradient(180deg, #f8f3eb 0%, #f6efe3 52%, #f2eadc 100%);
}

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

a {
  color: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.page-shell::before {
  top: 72px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(220, 182, 144, 0.32), transparent 62%);
}

.page-shell::after {
  top: 780px;
  left: -140px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(104, 124, 93, 0.18), transparent 64%);
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 10px;
}

.home-nav-bar {
  padding: 4px 0 4px;
}

.home-nav-panel {
  padding: 18px 22px;
}

.home-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.home-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.76);
  border: 1px solid rgba(95, 63, 49, 0.12);
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(85, 54, 40, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-nav a:hover,
.home-nav a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 248, 240, 0.95);
  box-shadow: 0 12px 22px rgba(85, 54, 40, 0.08);
}

.home-nav a[aria-current="page"] {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-color: transparent;
  color: #fff9f4;
  box-shadow: 0 16px 28px rgba(95, 63, 49, 0.18);
}

.notice {
  position: relative;
  display: block;
  padding: 14px 24px;
  text-align: left;
  border: 1px solid rgba(143, 92, 69, 0.14);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 241, 212, 0.95), transparent 18%),
    radial-gradient(circle at 88% 50%, rgba(255, 232, 196, 0.9), transparent 20%),
    linear-gradient(135deg, rgba(255, 248, 238, 0.96) 0%, rgba(252, 239, 223, 0.95) 55%, rgba(255, 246, 236, 0.96) 100%);
  color: var(--accent-deep);
  box-shadow: 0 16px 36px rgba(85, 54, 40, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.notice::before,
.notice::after {
  content: "✦";
  position: absolute;
  top: 50%;
  color: rgba(184, 136, 76, 0.7);
  font-size: 1rem;
  transform: translateY(-50%);
  animation: twinkle 3.8s ease-in-out infinite;
}

.notice::before {
  left: 18px;
}

.notice::after {
  right: 18px;
  animation-delay: 1.4s;
}

.notice-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(143, 92, 69, 0.12) 0%, rgba(95, 63, 49, 0.08) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.notice-badge::before,
.notice-badge::after {
  content: "★";
  color: #c18a4f;
  font-size: 0.92rem;
  animation: pulseStar 2.8s ease-in-out infinite;
}

.notice-badge::after {
  animation-delay: 1.1s;
}

.notice-copy {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--text);
  font-size: 1.03rem;
  white-space: nowrap;
}

.notice-marquee {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}

.notice-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: noticeMarquee 17s linear infinite;
}

.notice-track .notice-copy::before {
  content: "•";
  margin-right: 14px;
  color: #c18a4f;
  font-size: 1.1rem;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.28;
    transform: translateY(-50%) scale(0.9);
  }

  50% {
    opacity: 0.95;
    transform: translateY(-50%) scale(1.18);
  }
}

@keyframes pulseStar {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes noticeMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 28px));
  }
}

.notice-track .notice-badge::after {
  content: "\2022";
  margin-left: 20px;
  color: #c18a4f;
  font-size: 1.05rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: stretch;
  padding: 24px 0 10px;
}

.panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: 34px;
}

.brand-lockup {
  display: block;
  width: min(100%, 580px);
  height: auto;
  margin-bottom: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(104, 124, 93, 0.12);
  color: var(--leaf);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2 {
  margin: 18px 0 14px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.85rem);
}

.hero-copy p,
.section-head p,
.contact-text,
.story-copy p,
.footer-copy {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.cta-row,
.cta-row-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff8f4;
  box-shadow: 0 14px 30px rgba(95, 63, 49, 0.22);
}

.button-secondary {
  background: rgba(255, 250, 244, 0.75);
  color: var(--accent-deep);
  border: 1px solid rgba(95, 63, 49, 0.16);
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(41, 28, 23, 0.78);
  backdrop-filter: blur(6px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 248, 240, 0.28);
  background: rgba(32, 21, 17, 0.88);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-caption {
  margin: 12px 6px 2px;
  color: rgba(255, 246, 238, 0.9);
  text-align: center;
  line-height: 1.5;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.14);
  color: #fff8f4;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 248, 240, 0.24);
}

.hero-aside {
  overflow: hidden;
  min-height: 100%;
}

.hero-image {
  position: relative;
  min-height: 100%;
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(49, 33, 27, 0.05), rgba(49, 33, 27, 0.26));
}

.floating-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 248, 240, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.floating-card strong,
.contact-card strong,
.nav-card strong,
.spotlight-copy h3,
.story-copy h3 {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.65);
  border: 1px solid rgba(122, 87, 67, 0.12);
}

.stat strong {
  display: block;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.section {
  padding: 38px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.nav-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(85, 54, 40, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-card:hover,
.nav-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(143, 92, 69, 0.3);
  box-shadow: 0 20px 40px rgba(85, 54, 40, 0.12);
}

.nav-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(220, 182, 144, 0.36), rgba(104, 124, 93, 0.16));
  font-size: 1rem;
  font-weight: 800;
}

.nav-card strong {
  font-size: 1.2rem;
}

.spotlight {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
}

.spotlight-image {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(250, 244, 235, 0.94), rgba(242, 230, 214, 0.92));
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: contain;
}

.spotlight-copy {
  padding: 30px;
}

.spotlight-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(220, 182, 144, 0.24);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: 0 12px 30px rgba(85, 54, 40, 0.08);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(250, 244, 235, 0.94), rgba(242, 230, 214, 0.92));
}

.gallery-card div {
  padding: 16px 18px 20px;
}

.gallery-card strong {
  display: block;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.story-art,
.contact-card,
.story-copy {
  border-radius: var(--radius-xl);
}

.story-art {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(220, 182, 144, 0.35), transparent 34%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(247, 240, 227, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-art img {
  width: min(100%, 280px);
}

.story-copy {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.86);
  box-shadow: var(--shadow);
}

.story-copy h3 {
  margin-top: 0;
  font-size: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.86);
  box-shadow: var(--shadow);
}

.contact-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-card strong {
  font-size: 1.26rem;
}

.contact-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(104, 124, 93, 0.1);
  color: var(--accent-deep);
}

footer {
  padding: 20px 0 48px;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 18px;
  border: 1px solid rgba(95, 63, 49, 0.12);
  background: linear-gradient(180deg, rgba(246, 239, 227, 0.96), rgba(241, 231, 216, 0.94));
  box-shadow: 0 10px 22px rgba(85, 54, 40, 0.06);
  text-decoration: none;
  color: var(--accent-deep);
  font-weight: 700;
}

.footer-badge img {
  width: 32px;
  max-height: 32px;
  height: auto;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  border: 0;
}

@media (max-width: 1024px) {
  .hero,
  .spotlight,
  .story,
  .contact-grid,
  .link-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    min-height: 420px;
  }

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

  .brand-lockup {
    width: min(100%, 460px);
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height: 1.04;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(var(--max), calc(100% - 20px));
  }

  .hero {
    gap: 20px;
  }

  .home-nav-panel {
    padding: 16px 18px;
  }

  .home-nav {
    gap: 8px;
  }

  .home-nav a {
    padding: 9px 14px;
    font-size: 0.98rem;
  }

  .brand-lockup {
    width: min(100%, 320px);
    margin-bottom: 16px;
  }

  .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }

  .hero-copy h1 {
    margin: 14px 0 12px;
    font-size: clamp(1.8rem, 8.8vw, 2.45rem);
    line-height: 1.06;
  }

  .hero-copy p,
  .section-head p,
  .contact-text,
  .story-copy p,
  .footer-copy {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-copy,
  .spotlight-copy,
  .story-copy,
  .contact-card {
    padding: 20px;
  }

  .floating-card {
    position: static;
    margin: 14px 16px 16px;
    left: auto;
    right: auto;
    bottom: auto;
    background: rgba(255, 248, 240, 0.94);
    backdrop-filter: blur(8px);
  }

  .hero-image {
    display: grid;
    min-height: auto;
  }

  .hero-image img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .hero-image::after {
    display: none;
  }

  .notice {
    border-radius: 22px;
    flex-direction: column;
    padding: 16px 18px;
    text-align: center;
  }

  .notice::before,
  .notice::after {
    display: none;
  }

  .notice-marquee {
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0, black 10%, black 90%, transparent 100%);
  }

  .notice-track {
    animation: noticeMarquee 22s linear infinite;
    width: max-content;
  }

  .notice-copy {
    white-space: nowrap;
  }

  .notice-track .notice-copy::before {
    margin-right: 12px;
  }

  .cta-row,
  .cta-row-secondary {
    gap: 10px;
    margin-top: 20px;
  }

  .cta-row .button,
  .cta-row-secondary .button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
  }

  .stat {
    padding: 16px;
  }

  .stat strong {
    font-size: 1.45rem;
  }

  .section {
    padding: 28px 0;
  }

  .spotlight-image img {
    min-height: 240px;
  }

  .spotlight-copy h3,
  .story-copy h3 {
    font-size: 1.7rem;
    line-height: 1.15;
  }

  .contact-card li {
    flex-direction: column;
    gap: 4px;
  }

  .contact-card strong {
    font-size: 1.16rem;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-badge {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .wrap {
    width: calc(100% - 16px);
  }

  .brand-lockup {
    width: min(100%, 280px);
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .hero-copy,
  .spotlight-copy,
  .story-copy,
  .contact-card,
  .home-nav-panel {
    padding: 18px;
  }

  .notice {
    padding: 14px 16px;
  }
}
