/* IMEXPORTA — flat static (AIDesigner-inspired: cream / sumi / editorial spacing) */
:root {
  --cream: #f5f4f0;
  --cream-dark: #eae7e0;
  --sumi: #2c2c2c;
  --sumi-muted: #3d3d3d;
  --stone: #6b6b6b;
  --forest: #15221c;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--sumi);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--sumi);
  color: var(--cream);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 4vw;
  background: rgba(245, 244, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}

.site-nav__brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sumi-muted);
}

.site-nav__links a[aria-current="page"] {
  color: var(--sumi);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 4vw 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--cream-dark) center/cover no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(245, 244, 240, 0.55),
      rgba(245, 244, 240, 0.88)
    ),
    linear-gradient(120deg, rgba(245, 244, 240, 0.2), transparent 45%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero__tag {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 14vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: rgba(44, 44, 44, 0.22);
  margin: 0 0 2rem;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 36rem;
}

.hero__copy p {
  margin: 0;
  letter-spacing: 0.04em;
  color: var(--sumi-muted);
  font-size: 1rem;
  max-width: 32rem;
}

/* Sections */
section {
  padding: 4.5rem 4vw;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 3rem;
}

.section--muted {
  background: var(--cream-dark);
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
  }
}

.about-grid figure {
  margin: 0;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: rgba(44, 44, 44, 0.06);
}

.about-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  color: var(--stone);
  font-size: 0.95rem;
}

.about-text p + p {
  margin-top: 1.25rem;
}

/* Products */
.products {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.product-card {
  border: 1px solid rgba(44, 44, 44, 0.1);
  background: var(--cream);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.product-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 1.75rem 1.5rem 2rem;
}

.product-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.product-card__body p {
  margin: 0 0 1.25rem;
  color: var(--stone);
  font-size: 0.9rem;
}

.btn-line {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sumi);
  padding-bottom: 2px;
}

.btn-line:hover {
  text-decoration: none;
  opacity: 0.75;
}

/* News */
.section--dark {
  background: var(--forest);
  color: var(--cream);
}

.section--dark .section-title {
  color: var(--cream);
  text-align: left;
  margin-bottom: 2rem;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.news-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  .news-list li {
    flex-direction: row;
    align-items: baseline;
    gap: 2.5rem;
  }
}

.news-list time {
  flex-shrink: 0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
}

/* Access */
.access-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .access-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.map-frame {
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(44, 44, 44, 0.12);
  overflow: hidden;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.95);
}

.access-pre {
  font-family: var(--font-sans);
  white-space: pre-wrap;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.access-contact-link {
  margin: 0 0 1.75rem;
}

.access-columns {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .access-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.access-columns h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.5rem;
}

.access-columns p {
  margin: 0;
  color: var(--stone);
  font-size: 0.88rem;
}

/* FAQ */
.faq {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-item {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(44, 44, 44, 0.12);
}

.faq-item dt {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.faq-item dd {
  margin: 0;
  color: var(--stone);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  padding: 3rem 4vw;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
  text-align: center;
}

.site-footer__mark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  margin: 0 0 0.5rem;
}

.site-footer__copy {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin: 0;
}

.site-footer__credit {
  margin: 1.25rem 0 0;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  max-width: 28rem;
  margin-inline: auto;
  line-height: 1.5;
}

.site-footer__credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.req {
  color: #8b1a1a;
}

/* Page header (about / contact) */
.page-head {
  padding: 3rem 4vw 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}

.page-head h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.page-head p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--stone);
  font-size: 0.92rem;
}

/* Contact form */
.form {
  max-width: 28rem;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.form-card {
  border: 1px solid rgba(44, 44, 44, 0.12);
  background: var(--cream);
  padding: 2rem 1.5rem;
}

@media (min-width: 480px) {
  .form-card {
    padding: 2.25rem 2.5rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(44, 44, 44, 0.2);
  background: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-group textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-error {
  font-size: 0.75rem;
  color: #8b1a1a;
  margin-top: 0.25rem;
}

.form-banner {
  font-size: 0.8rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  background: #fff8e6;
  border: 1px solid rgba(180, 140, 0, 0.35);
  color: #5c4a00;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--sumi);
  color: var(--cream);
  border: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(44, 44, 44, 0.12);
  background: var(--cream);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Reveal (app.js toggles .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
