@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --cream: #FFF3C4; --black: #000000; --muted: rgba(5, 5, 5, 0.45); }
html { scroll-behavior: smooth; }
body { font-family: 'Schibsted Grotesk', sans-serif; background: var(--cream); color: var(--black); overflow-x: hidden; min-height: 100vh; }

/* nav */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.4rem 2.5rem; display: flex; justify-content: space-between; align-items: center; }
.nav-logo-link { display: block; width: 55px; }
.nav-logo-link img { width: 100%; height: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-family: 'Schibsted Grotesk', sans-serif; font-size: 0.95rem; font-weight: 400; color: var(--black); text-decoration: none; letter-spacing: 0.06em; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 0.55; }
@media (max-width: 560px) { nav { padding: 1.2rem 1.5rem; } .nav-links { gap: 1.4rem; } .nav-links a { font-size: 0.82rem; } }

/* hero */
.hero { 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  padding: 6rem 2rem 4rem; 
  position: relative; 
}
.cake { position: absolute; border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; user-select: none; }
.cake img { width: 100%; object-fit: fill; border-radius: 50%; }
.cake.strawb { cursor: pointer; }
.cake.strawb img { transition: box-shadow 0.12s ease; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); }
.cake.strawb:hover img { box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); }
.cake.strawb:active { transform: translateX(-50%) scale(0.95) translateY(2px); }
.cake.strawb:active img { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
.cake.strawb .cake-btn-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-family: 'Schibsted Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em; text-shadow: 0 1px 4px rgba(0,0,0,0.5); pointer-events: none; z-index: 2; }
.choco { width: 210px; height: 210px; top: 10%; left: 19%; }
.pecan { width: 195px; height: 195px; top: 28%; left: 5%; }
.roses { width: 190px; height: 225px; bottom: 12%; left: 15%; }
.plum { width: 200px; height: 260px; top: 80%; left: 4%; }
/* left */
.berry { width: 230px; height: 170px; top: 13%; right: 19%; }
.lemon { width: 190px; height: 225px; bottom: 35%; right: 6%; }
.pink { width: 170px; height: 150px; bottom: 20%; right: 22%; }
.cream { width: 225px; height: 225px; top: 80%; right: 7%; }
.slice { width: 400px; height: 225px; bottom: -160%; right: 32%; }
.pie-cut { width: 200px; height: 225px; margin: 2rem auto 4rem; display: block; position: relative; }
/* button */
.strawb { width: 150px; height: 225px; bottom: 6%; left: 50%; transform: translateX(-50%); }
@media (max-width: 768px) {
  .choco { width: 100px; height: 100px; top: 10%; left: 2%; }
  .berry { width: 90px; height: 90px; top: 9%; right: 2%; }
  .plum { width: 110px; height: 110px; top: 38%; left: 0; }
  .pecan { width: 100px; height: 100px; top: 36%; right: 0; }
  .pink { width: 80px; height: 80px; bottom: 14%; left: 2%; }
  .cream { width: 100px; height: 100px; bottom: 8%; right: 2%; }
  .lemon { width: 90px; height: 90px; bottom: 22%; right: 2%; }
  .roses { width: 90px; height: 90px; bottom: 4%; left: 38%; }
  .strawb{ width: 140px; height: 140px; bottom: 4%; left: 50%; transform: translateX(-50%); }
  .strawb:active { transform: translateX(-50%) scale(0.95) translateY(2px); }
  .slice { display: none; }
  .pie-cut { width: 140px; height: 140px; margin: 2rem auto 3rem; }
  .cake.strawb .cake-btn-label { font-size: 0.9rem; }
  .about-images { display: none; }
  .about { padding: 8rem 2rem 6rem; }
}
.hero-center { position: relative; z-index: 2; max-width: 520px; }
.hero-title { font-family: 'Schibsted Grotesk', sans-serif; font-size: clamp(3.5rem, 10vw, 6.5rem); font-weight: 400; color: var(--black); line-height: 1; letter-spacing: 0.01em; margin-bottom: 1.5rem; }
.hero-title img { width: 100%; max-width: 380px; }
.hero-tagline { font-family: 'Schibsted Grotesk', sans-serif; font-size: clamp(1rem, 2.2vw, 1.2rem); font-weight: 400; color: var(--black); opacity: 0.75; line-height: 1.6; letter-spacing: 0.03em; margin-bottom: 1rem; }
.hero-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.btn { font-family: 'Schibsted Grotesk', sans-serif; font-size: 0.9rem; font-weight: 300; letter-spacing: 0.1em; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--black); padding-bottom: 2px; transition: opacity 0.2s; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; }
.btn:hover { opacity: 0.5; }

/* about */
.about { 
  text-align: left; 
  padding: 10rem 4rem 10rem; 
  max-width: 100%; 
  background: #ffffff; 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: flex-start; 
}
.section-label { font-family: 'Schibsted Grotesk', sans-serif; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 300; opacity: 0.5; display: block; margin-bottom: 2rem; }
.about h2 { font-family: 'Schibsted Grotesk', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 400; line-height: 1.25; margin-bottom: 1.5rem; }
.about-content { max-width: 480px; flex: 1; }
.about h2.title-image img { max-width: 280px; width: 100%; height: auto; }
.about-images { display: flex; flex-direction: column; gap: 1.5rem; margin-left: 4rem; flex-shrink: 0; }
.cake2 { right: 7%; }
.about-images img { width: 200px; height: 260px; object-fit: cover; border-radius: 24px; }
.about p { font-size: 1.05rem; font-weight: 300; line-height: 1.9; opacity: 0.8; margin-bottom: 1rem; }
.tags { margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.tag { font-size: 0.8rem; font-weight: 300; letter-spacing: 0.08em; border: 1px solid rgba(184,48,48,0.35); padding: 0.4rem 1rem; border-radius: 100px; opacity: 0.7; }

/* divider */
.divider { text-align: center; padding: 1rem 2rem; font-size: 0.7rem; letter-spacing: 0.25em; opacity: 0.3; }

/* pricing */
.pricing { padding: 5rem 2rem 6rem; max-width: 680px; margin: 0 auto; text-align: center; }
.pricing h2 { font-family: 'Schibsted Grotesk', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 400; margin-bottom: 3.5rem; }
.price-list { display: flex; flex-direction: column; }
.price-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: baseline; padding: 1.4rem 0; border-top: 1px solid rgba(184,48,48,0.2); gap: 1rem; }
.price-row:last-child { border-bottom: 1px solid rgba(184,48,48,0.2); }
.price-left { text-align: left; }
.price-name { font-family: 'Schibsted Grotesk', sans-serif; font-size: 1.15rem; font-weight: 400; }
.price-detail { font-size: 0.8rem; font-weight: 300; opacity: 0.55; letter-spacing: 0.04em; margin-top: 0.2rem; }
.price-center { font-size: 0.65rem; letter-spacing: 0.15em; opacity: 0.3; text-align: center; }
.price-right { text-align: right; }
.price-amount { font-family: 'Schibsted Grotesk', sans-serif; font-size: 1.3rem; font-weight: 400; }
.price-people { font-size: 0.78rem; font-weight: 300; opacity: 0.55; margin-top: 0.2rem; }
.vegan-note { margin-top: 3rem; font-size: 0.88rem; font-weight: 400; opacity: 0.65; line-height: 1.7; max-width: 420px; margin-left: auto; margin-right: auto; }
@media (max-width: 480px) { .price-row { grid-template-columns: 1fr 1fr; } .price-center { display: none; } }

/* contact */
.contact { padding: 5rem 2rem 4rem; max-width: 500px; margin: 0 auto; text-align: center; }
.contact h2 { font-family: 'Schibsted Grotesk', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 400; margin-bottom: 0.8rem; }
.contact h2.title-image img { max-width: 620px; width: 100%; height: auto; }
.contact-sub { font-size: 0.95rem; font-weight: 400; opacity: 0.6; margin-bottom: 3rem; line-height: 1.7; }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
#contactForm { background: #ffffff; padding: 2.5rem 2rem; border-radius: 20px; border: 1px solid rgba(0,0,0,0.08); }
label { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 300; margin-bottom: 0.5rem; color: var(--black); }
input[type=text], input[type=email], input[type=tel], textarea, select { width: 100%; padding: 0.8rem 0; border: none; border-bottom: 1px solid rgba(0,0,0,0.2); background: transparent; font-family: 'Schibsted Grotesk', sans-serif; font-size: 1rem; font-weight: 400; color: var(--black); border-radius: 0; outline: none; -webkit-appearance: none; appearance: none; transition: border-color 0.2s; }
input::placeholder, textarea::placeholder { opacity: 0.4; font-style: italic; }
input:focus, textarea:focus, select:focus { border-bottom-color: var(--black); }
textarea { resize: vertical; min-height: 90px; }
select { cursor: pointer; }
select option { background: var(--cream); }
.submit-btn { margin-top: 2rem; background: none; border: 1px solid rgba(184,48,48,0.5); padding: 0.85rem 3rem; font-family: 'Schibsted Grotesk', sans-serif; font-size: 0.9rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--black); cursor: pointer; transition: opacity 0.2s, background 0.2s; }
.submit-btn:hover { background: rgba(184,48,48,0.06); }
.form-success { display: none; margin-top: 2rem; font-size: 1rem; font-weight: 400; opacity: 0.7; line-height: 1.7; }

/* footer */
footer { text-align: center; padding: 3rem 2rem 4rem; font-size: 0.72rem; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.7); font-weight: 300; background: #D4A56A; }