@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #f5efe4;
  --bg-alt: #fdf9f2;
  --surface: #fffdf8;
  --surface-strong: #fff7ec;
  --ink: #102034;
  --muted: #5e6b7b;
  --line: rgba(16, 32, 52, 0.12);
  --accent: #f6a33c;
  --accent-2: #e66f46;
  --accent-3: #385a8f;
  --dark: #0f1d2c;
  --success: #3a8a63;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(16, 32, 52, 0.10);
  --shadow-soft: 0 10px 40px rgba(16, 32, 52, 0.08);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(246,163,60,0.18), transparent 25%),
    radial-gradient(circle at 95% 20%, rgba(230,111,70,0.15), transparent 20%),
    linear-gradient(180deg, #f7f1e7 0%, #f5efe4 45%, #f8f4ec 100%);
  font-family: 'Sora', system-ui, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  z-index: -1;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .65;
}
body::before {
  width: 220px; height: 220px; left: -30px; bottom: 8%;
  background: rgba(246,163,60,0.22);
}
body::after {
  width: 280px; height: 280px; right: -80px; top: 15%;
  background: rgba(56,90,143,0.10);
}

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .84rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.6);
  border: 1px solid rgba(16,32,52,.08); color: var(--accent-2);
  backdrop-filter: blur(8px);
}
.kicker::before {
  content: ''; width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.eyebrow {
  font-size: .84rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2);
}
.display,
.section h2,
.footer-brand,
.privacy-title,
.not-found h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.display {
  font-size: clamp(3.5rem, 8vw, 6.4rem);
  line-height: .96;
  margin: 18px 0 20px;
}
.display .accent { color: var(--accent-2); font-style: italic; }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 640px; }
.section h2 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; margin: 0 0 18px; }
.section-subtitle { color: var(--muted); max-width: 640px; font-size: 1.04rem; }

.notice-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(10px);
}
.notice-wrap {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  font-size: .92rem; padding: 10px 0;
}
.notice-pill { color: var(--accent-2); font-weight: 700; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(245,239,228,.76);
  border-bottom: 1px solid rgba(16,32,52,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: 14px; font-weight: 800; }
.brand-mark {
  width: 50px; height: 50px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white; font-weight: 800; box-shadow: var(--shadow-soft);
}
.brand-text small { display: block; color: var(--muted); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--muted); font-size: .96rem; font-weight: 600; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.hamburger {
  display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); font-size: 1.2rem; color: var(--ink);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 22px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 700; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--dark); color: white; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: #0b1723; }
.btn-secondary { background: rgba(255,255,255,.72); border-color: var(--line); color: var(--ink); }
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; box-shadow: var(--shadow-soft); }

.hero {
  padding: 78px 0 48px;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 44px; align-items: center;
}
.hero-copy { position: relative; }
.hero-copy::after {
  content: ''; position: absolute; right: 18%; top: -28px; width: 82px; height: 82px;
  border: 1px dashed rgba(16,32,52,.16); border-radius: 50%; animation: spin 18s linear infinite;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px;
}
.meta-card {
  padding: 18px; border-radius: 24px; background: rgba(255,255,255,.72); border: 1px solid var(--line);
}
.meta-card strong { display: block; font-size: 1.65rem; margin-bottom: 8px; }
.meta-card span { font-size: .92rem; color: var(--muted); }

.hero-visual {
  position: relative; min-height: 640px;
}
.hero-board {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.54));
  border: 1px solid rgba(16,32,52,.08); border-radius: 42px; box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-board::before,
.hero-board::after {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
}
.hero-board::before {
  width: 340px; height: 340px; background: rgba(246,163,60,.12); top: -80px; right: -50px;
}
.hero-board::after {
  width: 280px; height: 280px; background: rgba(56,90,143,.08); bottom: -80px; left: -40px;
}
.hero-shot {
  position: absolute; background: white; border: 1px solid rgba(16,32,52,.10); box-shadow: var(--shadow-soft); border-radius: 28px; overflow: hidden; z-index: 1;
}
.hero-shot img { width: 100%; height: 100%; object-fit: cover; }
.hero-shot.main { right: 32px; top: 28px; width: 52%; transform: rotate(2deg); }
.hero-shot.side { left: 28px; bottom: 28px; width: 40%; transform: rotate(-6deg); }
.hero-sticker {
  position: absolute; left: 32px; top: 30px; display: flex; gap: 14px; align-items: center; z-index: 2;
  padding: 16px 18px; border-radius: 24px; background: rgba(255,250,242,.95); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); max-width: 280px;
}
.hero-sticker img { width: 54px; height: 54px; object-fit: cover; border-radius: 16px; }
.hero-floating {
  position: absolute; z-index: 2; padding: 18px 20px; border-radius: 24px; box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.92); border: 1px solid var(--line); animation: drift 5.5s ease-in-out infinite;
}
.hero-floating.one { right: 20px; bottom: 140px; animation-delay: -1s; }
.hero-floating.two { left: 40px; top: 150px; animation-delay: -2.5s; }
.hero-floating strong { display: block; font-size: 1.4rem; margin-bottom: 4px; }
.hero-floating span { color: var(--muted); font-size: .9rem; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.55); }
.marquee-track {
  display: flex; width: max-content; animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px; padding: 16px 24px; font-weight: 700; color: var(--ink);
}
.marquee-item::before { content: '✦'; color: var(--accent-2); }

.panel {
  padding: 34px; border-radius: var(--radius-xl); border: 1px solid var(--line);
  background: rgba(255,255,255,.65); box-shadow: var(--shadow-soft);
}
.panel-dark {
  background: linear-gradient(145deg, #121f2f, #18283d); color: white; border-color: rgba(255,255,255,.08);
}
.panel-dark .section-subtitle, .panel-dark p, .panel-dark li, .panel-dark .muted { color: rgba(255,255,255,.75); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.feature-card, .service-card, .gallery-card, .metric-card, .contact-card, .step-card {
  border-radius: 28px; border: 1px solid var(--line); background: rgba(255,255,255,.76); box-shadow: var(--shadow-soft);
}
.feature-card, .service-card, .step-card, .metric-card { padding: 26px; }
.feature-icon, .service-icon {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 18px; font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(246,163,60,.20), rgba(230,111,70,.16)); color: var(--dark);
}
.feature-card h3, .service-card h3, .step-card h3, .metric-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.muted { color: var(--muted); }

.split-layout {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 28px; align-items: start;
}
.stack { display: grid; gap: 20px; }
.story-list { display: grid; gap: 12px; padding: 0; list-style: none; margin: 22px 0 0; }
.story-list li {
  padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.8); border: 1px solid var(--line); display: flex; gap: 12px; align-items: start;
}
.story-list li::before {
  content: '•'; color: var(--accent-2); font-size: 1.2rem; line-height: 1;
}

.metrics-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.metric-card strong { font-size: 2rem; display: block; margin-bottom: 10px; }
.metric-note { color: var(--accent-2); font-weight: 700; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; }

.gallery-wrap { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; align-items: end; }
.gallery-card { overflow: hidden; padding: 18px; }
.gallery-card img {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover; object-position: top center;
  border-radius: 22px; border: 1px solid var(--line);
}
.gallery-copy { padding: 16px 8px 4px; }
.gallery-copy strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.gallery-card.tall { transform: translateY(-22px); }

.step-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; margin-top: 32px; }
.step-number {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; margin-bottom: 14px; font-weight: 700;
  background: var(--dark); color: white;
}

.cta-banner {
  position: relative; overflow: hidden; padding: 38px; border-radius: 34px; color: white;
  background: linear-gradient(140deg, #101d2f 0%, #172844 52%, #2f4c74 100%);
}
.cta-banner::before {
  content: ''; position: absolute; inset: auto -10% -35% auto; width: 240px; height: 240px; border-radius: 50%;
  background: rgba(246,163,60,.15); filter: blur(20px);
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.cta-banner p { color: rgba(255,255,255,.76); max-width: 720px; }

.contact-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: stretch;
}
.contact-card { padding: 30px; }
.contact-list { display: grid; gap: 16px; margin-top: 22px; }
.contact-item {
  padding: 16px 18px; border-radius: 20px; background: rgba(255,255,255,.76); border: 1px solid var(--line);
}
.contact-item span { display: block; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.contact-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-badge {
  padding: 10px 14px; border-radius: 999px; background: rgba(246,163,60,.15); border: 1px solid rgba(246,163,60,.26); font-weight: 700; font-size: .9rem;
}
.map-note { min-height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.map-mini {
  margin-top: 24px; padding: 26px; border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,247,236,.7)); border: 1px solid var(--line);
}
.address-stack { display: grid; gap: 12px; }
.address-stack strong { font-size: 1.18rem; }

.site-footer {
  padding: 22px 0 34px; border-top: 1px solid var(--line);
}
.footer-row {
  display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap;
}
.footer-brand { font-size: 1.6rem; }
.footer-meta { color: var(--muted); font-size: .92rem; }
.footer-link { font-weight: 700; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

.privacy-shell { padding: 72px 0 48px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; margin-bottom: 18px; }
.privacy-card {
  background: rgba(255,255,255,.76); border: 1px solid var(--line); border-radius: 36px; padding: 36px; box-shadow: var(--shadow-soft);
}
.privacy-title { font-size: clamp(2.5rem, 5vw, 4.5rem); margin: 0 0 16px; }
.privacy-meta { color: var(--muted); margin-bottom: 28px; }
.privacy-grid { display: grid; gap: 18px; }
.privacy-section {
  padding: 22px 24px; border-radius: 24px; background: rgba(255,255,255,.85); border: 1px solid var(--line);
}
.privacy-section h3 { margin: 0 0 12px; font-size: 1.08rem; }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-callout {
  padding: 22px; border-radius: 24px; background: linear-gradient(135deg, rgba(246,163,60,.14), rgba(230,111,70,.12)); border: 1px solid rgba(246,163,60,.24);
}

.not-found {
  min-height: 100vh; display: grid; place-items: center; padding: 40px 0;
}
.not-found .panel { max-width: 760px; }
.not-found h1 { font-size: clamp(3rem, 7vw, 6rem); margin: 0 0 10px; }

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  .hero-grid, .split-layout, .contact-grid, .gallery-wrap { grid-template-columns: 1fr; }
  .metrics-row, .step-grid, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3, .hero-meta { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-visual { min-height: 740px; }
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; display: none; flex-direction: column; align-items: flex-start;
    padding: 18px; border-radius: 24px; background: rgba(255,255,255,.92); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-actions .btn { display: none; }
  .hamburger { display: inline-grid; place-items: center; }
  .hero { padding-top: 52px; }
  .display { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .section { padding: 76px 0; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  .notice-wrap { flex-direction: column; align-items: flex-start; }
  .hero-board { border-radius: 30px; }
  .hero-shot.main { position: relative; width: calc(100% - 28px); left: 14px; top: 100px; right: auto; }
  .hero-shot.side { width: 56%; left: 18px; bottom: 28px; }
  .hero-sticker { left: 16px; right: 16px; max-width: none; }
  .hero-floating.one { right: 16px; bottom: 180px; }
  .hero-floating.two { left: 16px; top: 170px; }
  .hero-visual { min-height: 820px; }
  .hero-meta, .grid-3, .metrics-row, .grid-2, .grid-4, .step-grid { grid-template-columns: 1fr; }
  .gallery-card.tall { transform: none; }
  .cta-banner, .panel, .feature-card, .service-card, .metric-card, .gallery-card, .contact-card, .privacy-card { padding: 24px; }
  .footer-row { align-items: flex-start; }
}
