/* ========================================
   KULLBE — Stylesheet
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: #1c1c1c;
  background: #f8f7f4;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   LOGO ELEMENTS (shared across pages)
   ======================================== */

.logo-kull {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  letter-spacing: 0.06em;
}

.logo-be {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.logo-e-wrap {
  position: relative;
  display: inline-block;
}

.logo-star {
  position: absolute;
  width: 0.45em;
  height: 0.45em;
  top: -0.3em;
  left: -0.08em;
  pointer-events: none;
}

/* ========================================
   GLASS NAV
   ======================================== */

.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 62px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}

.glass-nav.visible {
  opacity: 1;
  pointer-events: auto;
}

.glass-nav.glass {
  background: rgba(248, 247, 244, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.nav-links-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-about {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1c1c1c;
  transition: opacity 0.2s ease;
}

.nav-about:hover {
  opacity: 0.45;
}

.nav-about.active {
  opacity: 0.4;
}

.nav-logo {
  font-size: 1.15rem;
  text-decoration: none;
  color: #1c1c1c;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

/* ========================================
   HERO — .page
   ======================================== */

.page {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f7f4;
  overflow: hidden;
}

.line-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #1c1c1c;
}

.logo-wrap {
  display: flex;
  align-items: baseline;
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: 1;
  user-select: none;
}

.bottom-group {
  position: absolute;
  bottom: 2.75rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: rgba(28, 28, 28, 0.6);
  text-transform: uppercase;
}

/* Notify form */
.notify-form {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(28, 28, 28, 0.25);
}

.notify-form input[type="email"] {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 200;
  letter-spacing: 0.08em;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.6rem 1rem;
  color: #1c1c1c;
  width: 210px;
}

.notify-form input[type="email"]::placeholder {
  color: rgba(28, 28, 28, 0.35);
}

.notify-form button {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #1c1c1c;
  color: #f8f7f4;
  border: none;
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.notify-form button:hover {
  opacity: 0.75;
}

.notify-form button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Scroll hint — hero and feature */
.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.45);
  z-index: 10;
}

.scroll-hint:hover {
  color: rgba(28, 28, 28, 0.7);
}

.scroll-arrow {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(28, 28, 28, 0.4), rgba(28, 28, 28, 0.05));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(1.25); opacity: 1; }
}

/* ========================================
   FEATURE SECTION
   ======================================== */

.feature-section {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.feature-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 6rem 4rem 6rem 7rem;
  background: #f8f7f4;
}

.feature-card {
  max-width: 380px;
}

.category {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.42);
  margin-bottom: 1.75rem;
}

.feature-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1c1c1c;
}

.feature-card p {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(28, 28, 28, 0.6);
  letter-spacing: 0.02em;
}

.feature-right {
  flex: 1;
  overflow: hidden;
}

.feature-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.feature-right:hover img {
  transform: scale(1.03);
}

/* ========================================
   PHOTO GRID
   ======================================== */

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100vh;
  position: relative;
}

.photo-left {
  grid-row: 1 / 3;
  overflow: hidden;
}

.photo-right-top {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
}

.photo-right-bottom {
  grid-column: 2;
  grid-row: 2;
  overflow: hidden;
}

.photo-left img,
.photo-right-top img,
.photo-right-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.photo-left:hover img,
.photo-right-top:hover img,
.photo-right-bottom:hover img {
  transform: scale(1.04);
}

/* Back Up scroll hint inside photo-grid */
.section-scroll {
  position: absolute;
  bottom: 1.75rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  z-index: 10;
}

.section-scroll:hover {
  color: rgba(255, 255, 255, 0.9);
}

.arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05));
}

/* ========================================
   SITE FOOTER
   ======================================== */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
  background: #f8f7f4;
}

.footer-left {
  display: flex;
  align-items: baseline;
  font-size: 1rem;
  color: #1c1c1c;
}

.footer-logo-kull {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  letter-spacing: 0.06em;
}

.footer-logo-be {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
}

.footer-logo-e-wrap {
  position: relative;
  display: inline-block;
}

.footer-logo-star {
  position: absolute;
  width: 0.45em;
  height: 0.45em;
  top: -0.3em;
  left: -0.08em;
  pointer-events: none;
}

.footer-xyu {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: rgba(28, 28, 28, 0.38);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.2s ease;
}

.footer-xyu:hover {
  color: #1c1c1c;
}

/* ========================================
   ABOUT PAGE — SPREAD
   ======================================== */

main {
  background: #f8f7f4;
}

.spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 62px;
}

.spread-image-main {
  overflow: hidden;
}

.spread-image-main .img-wrap {
  width: 100%;
  height: 100%;
}

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

.spread-right {
  display: flex;
  flex-direction: column;
  padding: 4.5rem 5rem 4rem 4rem;
}

.spread-label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.label-category {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.42);
  white-space: nowrap;
}

.label-line {
  flex: 1;
  height: 1px;
  background: rgba(28, 28, 28, 0.14);
}

.pull-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.pull-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1c1c1c;
}

.spread-divider {
  height: 1px;
  background: rgba(28, 28, 28, 0.12);
  margin-bottom: 3rem;
}

.spread-image-secondary {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

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

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.04);
  pointer-events: none;
}

/* Body section */
.body-section {
  padding: 7rem 0;
}

.spread-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.spread-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.12;
  color: #1c1c1c;
}

.spread-heading em {
  font-style: italic;
}

.body-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.4rem;
}

.body-text {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(28, 28, 28, 0.65);
  letter-spacing: 0.02em;
}

/* ========================================
   ORDER PAGE
   ======================================== */

.order-page {
  min-height: 100vh;
  padding-top: 62px;
  background: #f8f7f4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.order-container {
  width: 100%;
  max-width: 680px;
  padding: 5rem 2rem 7rem;
}

.order-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.42);
  margin-bottom: 1.5rem;
}

.order-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: #1c1c1c;
  margin-bottom: 1.25rem;
}

.order-heading em {
  font-style: italic;
}

.order-subtext {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.87rem;
  line-height: 1.82;
  color: rgba(28, 28, 28, 0.58);
  margin-bottom: 3.5rem;
  letter-spacing: 0.02em;
}

/* Form grid */
.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  row-gap: 2rem;
}

.field-group {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.field-group.half {
  grid-column: span 1;
}

.field-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.45);
}

.field-input,
.field-select,
.field-textarea {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #1c1c1c;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(28, 28, 28, 0.18);
  padding: 0.65rem 0;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-bottom-color: #1c1c1c;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: rgba(28, 28, 28, 0.3);
}

.field-select {
  color: rgba(28, 28, 28, 0.35);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%231c1c1c' opacity='0.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1rem;
}

.field-select.selected {
  color: #1c1c1c;
}

.field-textarea {
  resize: vertical;
  min-height: 96px;
  border: 1px solid rgba(28, 28, 28, 0.18);
  padding: 0.75rem 0.75rem;
  transition: border-color 0.2s ease;
}

.field-textarea:focus {
  border-color: #1c1c1c;
}

/* Call option (checkbox) */
.call-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.call-option input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: #1c1c1c;
  cursor: pointer;
  flex-shrink: 0;
}

.call-option-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.83rem;
  font-weight: 200;
  color: rgba(28, 28, 28, 0.65);
  line-height: 1.6;
}

.call-option-text strong {
  font-weight: 400;
  color: #1c1c1c;
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.85rem;
}

/* Schedule section */
.schedule-section {
  grid-column: 1 / 3;
  display: none;
  padding: 1.25rem 1.5rem;
  background: rgba(28, 28, 28, 0.04);
  border-left: 2px solid rgba(28, 28, 28, 0.15);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 200;
  color: rgba(28, 28, 28, 0.6);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.schedule-section.visible {
  display: block;
}

/* CTA row */
.cta-row {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
}

.cta-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: rgba(28, 28, 28, 0.38);
}

.btn-submit {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #1c1c1c;
  color: #f8f7f4;
  border: none;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-submit:hover {
  opacity: 0.75;
}

.btn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Success screen */
.success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  min-height: 320px;
}

.success-screen.visible {
  display: flex;
}

.success-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 2rem;
  opacity: 0.45;
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: #1c1c1c;
  margin-bottom: 1rem;
}

.success-text {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.87rem;
  line-height: 1.85;
  color: rgba(28, 28, 28, 0.55);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .feature-left {
    padding: 5rem 3rem 5rem 4rem;
  }

  .spread-right {
    padding: 3.5rem 3rem 3rem 3rem;
  }

  .spread-body {
    padding: 0 4rem;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .glass-nav {
    padding: 0 1.5rem;
    height: 54px;
  }

  /* Hero */
  .logo-wrap {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .notify-form input[type="email"] {
    width: 160px;
  }

  .scroll-hint {
    right: 1.5rem;
  }

  /* Feature */
  .feature-section {
    flex-direction: column;
  }

  .feature-left {
    padding: 4rem 2rem;
  }

  .feature-right {
    height: 55vw;
    flex: none;
  }

  /* Photo grid */
  .photo-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .photo-left {
    grid-row: auto;
    height: 70vw;
  }

  .photo-right-top,
  .photo-right-bottom {
    grid-column: 1;
    height: 55vw;
  }

  .section-scroll {
    right: 1.5rem;
  }

  /* About spread */
  .spread {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .spread-image-main {
    height: 60vw;
  }

  .spread-right {
    padding: 3rem 1.5rem;
  }

  .pull-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .body-section {
    padding: 4rem 0;
  }

  .spread-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  /* Order */
  .order-page {
    padding-top: 54px;
  }

  .order-container {
    padding: 4rem 1.5rem 5rem;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .field-group,
  .field-group.half {
    grid-column: 1;
  }

  .schedule-section,
  .cta-row {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .notify-form {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
  }

  .notify-form input[type="email"] {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
