@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Raleway:wght@200;300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --gold: #B8944F;
  --gold-light: #D4B574;
  --gold-dark: #8C6D35;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --charcoal: #2A2A2A;
  --charcoal-light: #3D3D3D;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --bg-overlay: rgba(26, 26, 26, 0.55);
  --border-light: rgba(184, 148, 79, 0.25);
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.8;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ===== SELECTION ===== */
::selection { background: var(--gold-light); color: var(--white); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 1.2rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--gold-dark); }

/* ===== UTILITY ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-line--center {
  margin: 1.5rem auto;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.logo span {
  color: var(--gold);
}

.nav { display: flex; align-items: center; gap: 2.5rem; }

.nav__link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-medium);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: var(--gold); }
.nav__link--active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--cream);
  z-index: 2000;
  padding: 5rem 2.5rem;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.mobile-nav.active { right: 0; }

.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-nav__link {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav__link:hover { color: var(--gold); }

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1500;
  opacity: 0;
  transition: opacity 0.4s;
}

.overlay.active { opacity: 1; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  opacity: 0.5;
  transition: transform 8s ease;
}

.hero:hover .hero__bg { transform: scale(1.03); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 8rem 2rem 4rem;
  margin: 0 auto;
  text-align: center;
}

.hero__label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 550px;
  margin: 0 auto 2rem;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== ARTICLE SECTION ===== */
.article-section {
  padding: 6rem 0;
  background: var(--white);
}

.article__header {
  text-align: center;
  margin-bottom: 4rem;
}

.article__content {
  max-width: 780px;
  margin: 0 auto;
}

.article__content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  position: relative;
  padding-left: 1.2rem;
}

.article__content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--gold);
  border-radius: 2px;
}

.article__content p {
  font-family: 'Lora', serif;
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--text-medium);
}

.article__highlight {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-left: 3px solid var(--gold);
  padding: 1.8rem 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.article__highlight p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 6rem 0;
  background: var(--cream);
}

.blog-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(184,148,79,0.1);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.blog-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 1.8rem;
}

.blog-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.blog-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.blog-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card__link::after {
  content: '→';
  transition: transform 0.3s;
}

.blog-card:hover .blog-card__link::after {
  transform: translateX(4px);
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  position: relative;
  text-align: center;
  padding-top: 5rem;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../img/about-hero.jpg') center/cover no-repeat;
  opacity: 0.35;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 1rem auto 0; }

.about-section {
  padding: 5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.about-grid__text h2 { margin-bottom: 1.5rem; }

.about-grid__text p {
  font-family: 'Lora', serif;
  line-height: 1.9;
}

.values-section {
  padding: 5rem 0;
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 { margin-bottom: 0.8rem; }
.value-card p { font-size: 0.9rem; }

/* ===== ORDER FORM ===== */
.order-section {
  padding: 5rem 0;
  background: var(--white);
}

.order-form {
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 3rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,148,79,0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover { background: var(--gold-dark); }

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  padding: 2rem;
}

.success-box {
  max-width: 500px;
}

.success-box__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.success-box h1 { margin-bottom: 1rem; }

.success-box p { font-size: 1.05rem; }

.btn-back {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-back:hover { background: var(--gold-dark); color: var(--white); }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}

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

.footer__brand .logo { margin-bottom: 1rem; display: block; }
.footer__brand .logo { color: var(--white); }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; }

.footer__heading {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__link {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer__link:hover { color: var(--gold-light); }

.footer__contact-item {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.footer__disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
  text-align: center;
}

.footer__disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== POLICY PAGES ===== */
.policy-section {
  padding: 5rem 0 4rem;
  background: var(--white);
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-content p {
  font-family: 'Lora', serif;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__content { padding: 7rem 1.5rem 3rem; }
  .order-form { padding: 2rem 1.5rem; }
}
