/* ─────────────────────────────────────────
   SITE-WIDE DESIGN SYSTEM
   Aesthetic: warm editorial / artisan brand
───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream:    #f9f5ef;
  --warm-bg:  #f2ece0;
  --ink:      #1c1a17;
  --muted:    #7a7060;
  --accent:   #b85c38;
  --accent2:  #d4a96a;
  --white:    #ffffff;
  --border:   #ddd5c5;
  --nav-h:    72px;
  --radius:   6px;
  --shadow:   0 4px 24px rgba(28,26,23,0.09);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}
h2{  
font-family: "Rampart One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(28,26,23,0.05);
}

nav header {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  height: auto;
  padding: 0;
}

header img.logo {
  height:150px;
  width: auto !important;
  object-fit: contain;
}
blockquote {
  font-size: 1.3rem;
  font-style: italic;
  border-left: 4px solid #b467c6;
  padding-left: 15px;
  margin: 20px 0;
  color: #555;
}

.about-text h2 {
  margin-top: -40px;
  font-size: 1.5rem;
}
/* ── DROPDOWN ── */
.dropdown { position: relative; }

.dropbtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.dropbtn:hover { background: var(--warm-bg); }

.dropbtn img.menu {
  width: 26px !important;
  height: 26px !important;
  display: block;
  opacity: 0.75;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 160px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: dropIn 0.18s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-content a {
  display: block;
  padding: 11px 20px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--border);
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
  background-color: var(--warm-bg);
  color: var(--accent);
}
.dropdown:hover .dropdown-content { display: block; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background-color: var(--warm-bg);
  border-bottom: 1px solid var(--border);
  padding: 52px 32px 40px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── ABOUT PAGE ── */
.about-wrapper {
  max-width: 780px;
  margin: 60px auto;
  padding: 0 32px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #3a342a;
}

.about-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  float: left;
  line-height: 0.85;
  margin-right: 6px;
  margin-top: 6px;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
  margin: 36px 0 10px;
  padding-left: 16px;
  border-left: 3px solid var(--accent2);
}

/* ── GALLERY / PARALLAX ── */
.parallaxa, .parallaxb, .parallaxc, .parallaxd,
.parallaxe, .parallaxf, .parallaxg, .parallaxh {
  height: 420px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallaxa { background-image: url('pic1.jpg'); }
.parallaxb { background-image: url('pic2.jpg'); }
.parallaxc { background-image: url('pic3.jpg'); }
.parallaxd { background-image: url('pic4.jpg'); }
.parallaxe { background-image: url('pic5.jpg'); }
.parallaxf { background-image: url('pic6.jpg'); }
.parallaxg { background-image: url('pic1.jpg'); }
.parallaxh { background-image: url('pic2.jpg'); }

.texta {
  background-color: var(--ink);
  color: var(--accent2);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-style: italic;
  text-align: center;
  padding: 32px 20px;
  letter-spacing: 0.02em;
}

.still {
  height: 80px;
  background-color: var(--cream);
}

/* ── IMAGE GALLERY (testimonialss.html) ── */
.gallery-page-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.gallery-page-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin: 48px 0 32px;
  color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(28,26,23,0.13);
}

.gallery-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.gallery-item .desc {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ── FORMS (contact + store) ── */
.form-wrapper {
  max-width: 620px;
  margin: 60px auto;
  padding: 0 32px;
}

form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 44px;
  box-shadow: var(--shadow);
}

form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.4;
  text-align: center;
}

form label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  margin-top: 20px;
}
form label:first-of-type { margin-top: 0; }

form input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
form input[type="text"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,92,56,0.12);
  background: var(--white);
}

form input[type="submit"] {
  margin-top: 28px;
  width: 100%;
  padding: 14px;
  background-color: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
form input[type="submit"]:hover {
  background-color: #9e4a28;
  transform: translateY(-1px);
}

/* ── STORE IMAGE ── */
.store-img-wrap {
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 32px;
}
.store-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ── FOOTER ── */
footer {
  background-color: var(--ink);
  color: var(--muted);
  text-align: center;
  padding: 28px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: 0;
}
footer span { color: var(--accent2); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 0 18px; }
  .about-wrapper, .form-wrapper { padding: 0 20px; }
  form { padding: 28px 22px; }
  .gallery { grid-template-columns: 1fr; }
  .parallaxa, .parallaxb, .parallaxc, .parallaxd,
  .parallaxe, .parallaxf, .parallaxg, .parallaxh {
    background-attachment: scroll;
    height: 260px;
  }
}

.about-text {
  column-count: 2;
  column-gap: 40px;
  line-height: 1.8;
}

.dropcap {
  float: left;
  font-size: 3.5rem;
  line-height: 1;
  padding-right: 8px;
  font-weight: bold;
}
.sizzle-section {
  width: 100%;
  padding: 80px 0;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sizzle-overlay {
  width: 85%;
  max-width: 1000px;
  text-align: center;
  color: white;
}

.sizzle-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.sizzle-overlay p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.sizzle-video {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.gallery-item img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  display: block;
}

.gallery-item .desc {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 15px;
  color: #333;
}

.gallery-item h2 {
  font-size: 1rem;
  font-weight: normal;
  margin: 10px 15px 0;
  color: #666;
}