:root {
  --bg: #F7F5F0;
  --bg-warm: #EEE9E1;
  --text: #2A2118;
  --text-light: #6B5F52;
  --accent: #8A9E7D;
  --accent-warm: #C4A882;
  --border: rgba(42, 33, 24, 0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text);
}
.tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* HERO */
.hero {
  padding: 100px 64px 80px;
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  max-width: 380px;
  line-height: 1.7;
}
.hero-image-block {
  position: relative;
}
.hero-image-frame {
  background: var(--bg-warm);
  border-radius: 200px 200px 24px 24px;
  padding: 60px 40px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
}
.hero-kettle-visual {
  position: relative;
  width: 120px;
}
.kettle-body {
  width: 100px;
  height: 110px;
  background: linear-gradient(145deg, #D4C4A8 0%, #C4B090 50%, #B8A882 100%);
  border-radius: 50px 50px 18px 18px;
  position: relative;
}
.kettle-body::before {
  content: '';
  position: absolute;
  top: 5px; right: -24px;
  width: 28px; height: 16px;
  background: #C4A882;
  border-radius: 0 12px 12px 0;
}
.kettle-body::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 22px;
  background: #B8A070;
  border-radius: 50% 50% 0 0;
}
.kettle-base {
  width: 120px; height: 16px;
  background: linear-gradient(to bottom, #A89878, #8A7A5A);
  border-radius: 8px 8px 4px 4px;
  margin-top: -4px;
}
.kettle-steam {
  position: absolute;
  top: -30px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 30px;
}
.kettle-steam::before,
.kettle-steam::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 2px; height: 20px;
  background: rgba(138, 158, 125, 0.4);
  border-radius: 2px;
  animation: steam 2.4s ease-in-out infinite;
}
.kettle-steam::before { left: 8px; animation-delay: 0s; }
.kettle-steam::after { right: 8px; animation-delay: 0.8s; }
@keyframes steam {
  0% { transform: translateY(0) scaleY(1); opacity: 0.4; }
  50% { transform: translateY(-12px) scaleY(1.2); opacity: 0.7; }
  100% { transform: translateY(-24px) scaleY(0.8); opacity: 0; }
}
.hero-badge {
  position: absolute;
  bottom: 24px; right: 0;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(42,33,24,0.08);
}
.badge-rating {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
}
.badge-label {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-light);
}
.badge-label strong { color: var(--text); font-weight: 500; }

/* MANIFESTO */
.manifesto {
  background: var(--text);
  color: #F7F5F0;
  padding: 100px 64px;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}
.rule { flex: 1; height: 1px; background: rgba(247,245,240,0.2); }
.label-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}
.manifesto-statement {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #F0EBE0;
}
.manifesto-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,245,240,0.6);
}

/* PHILOSOPHY */
.philosophy { padding: 100px 64px; background: var(--bg); }
.philosophy-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 72px;
  color: var(--text);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.philosophy-item {}
.philosophy-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--accent);
}
.philosophy-item h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}
.philosophy-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

/* RITUALS */
.rituals {
  padding: 100px 64px;
  background: var(--bg-warm);
}
.rituals-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ritual-card {
  padding: 48px;
  background: var(--bg);
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.ritual-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.7;
}
.ritual-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
.ritual-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}
.rituals-aside { padding-top: 16px; }
.aside-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.aside-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.aside-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
}

/* CLOSING */
.closing {
  padding: 100px 64px;
  background: var(--bg);
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 56px;
}
.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 64px;
}
.closing-details {
  display: flex;
  gap: 48px;
}
.detail-item {
  display: flex;
  flex-direction: column;
}
.detail-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.detail-value {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* FOOTER */
.site-footer {
  padding: 40px 64px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.footer-location {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-legal {
  font-size: 11px;
  color: var(--text-light);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-header { padding: 20px 32px; }
  .hero { padding: 60px 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { max-width: 100%; }
  .hero-image-frame { min-height: 320px; }
  .manifesto { padding: 80px 32px; }
  .philosophy { padding: 80px 32px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .rituals { padding: 80px 32px; }
  .rituals-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 80px 32px; }
  .closing-details { flex-direction: column; gap: 24px; }
  .site-footer { padding: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .site-header { padding: 16px 20px; }
  .hero { padding: 40px 20px; }
  .manifesto { padding: 60px 20px; }
  .philosophy { padding: 60px 20px; }
  .rituals { padding: 60px 20px; }
  .closing { padding: 60px 20px; }
  .site-footer { padding: 24px 20px; }
}