/* ============================================
   SHERRINA HANSEN — sherrinahansen.com
   Brand Colors:
     Deep Teal:    #009E97
     Deep Coral:   #E8192C
     Charcoal:     #3C3C3C
     Cream:        #FAF6F0
     White:        #FFFFFF
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Nunito:wght@300;400;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

/* Top accent bar — red stripe across very top of every page */
body::before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E8192C 0%, #009E97 50%, #E8192C 100%);
  z-index: 9999;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  color: #3C3C3C;
  background-color: #FFFFFF;
  line-height: 1.7;
  font-size: 17px;
}

img {
  max-width: 100%;
  display: block;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

h1, h2 { color: #009E97; }
h3, h4 { color: #E8192C; }

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

p {
  margin-bottom: 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* --- Colors / Backgrounds --- */
.bg-cream    { background-color: #FAF6F0; }
.bg-teal     { background-color: #009E97; }
.bg-red      { background-color: #E8192C; color: #FAF6F0; }
.bg-charcoal { background-color: #3C3C3C; color: #FAF6F0; }
.text-teal   { color: #009E97; }
.text-red    { color: #E8192C; }
.text-cream  { color: #FAF6F0; }
.text-center { text-align: center; }

/* Text overrides inside colored backgrounds */
.bg-teal h1, .bg-teal h2, .bg-teal h3, .bg-teal h4 { color: #FAF6F0; }
.bg-teal p, .bg-teal a { color: #FAF6F0; }
.bg-red h1, .bg-red h2, .bg-red h3, .bg-red h4 { color: #FAF6F0; }
.bg-red p { color: #FAF6F0; }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3, .bg-charcoal h4 { color: #FAF6F0; }
.bg-charcoal p { color: #FAF6F0; }

/* --- Divider --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 1.5rem auto;
  width: fit-content;
}

.divider::before,
.divider::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: #E8192C;
}

.divider::before { background-color: #009E97; }
.divider::after  { background-color: #009E97; }

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #E8192C;
  display: inline-block;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #009E97;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  background: transparent;
  color: #3C3C3C;
}

.btn:hover {
  background-color: #009E97;
  color: #3C3C3C;
}

.btn--teal {
  border-color: #009E97;
  color: #3C3C3C;
}

.btn--teal:hover {
  background-color: #009E97;
  color: #3C3C3C;
}

.btn--charcoal {
  border-color: #3C3C3C;
  color: #3C3C3C;
}

.btn--charcoal:hover {
  background-color: #3C3C3C;
  color: #FAF6F0;
}

.btn--cream {
  border-color: #FAF6F0;
  color: #FAF6F0;
}

.btn--cream:hover {
  background-color: #FAF6F0;
  color: #3C3C3C;
}

.btn--red {
  border-color: #E8192C;
  background-color: #E8192C;
  color: #FFFFFF;
}

.btn--red:hover {
  background-color: #c41020;
  border-color: #c41020;
  color: #FFFFFF;
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(250, 246, 240, 0.97);
  border-bottom: 1px solid #ddd6cc;
  padding: 1rem 0;
}

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

.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-nav__logo-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #FFFFFF;
  transition: transform 0.25s ease;
}

.site-nav__logo:hover .site-nav__logo-circle {
  transform: rotate(-6deg);
}

.site-nav__logo-img {
  /* Fit the entire logo inside the circle container */
  width: 82%;
  height: 82%;
  margin: 9%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Fallback badge if logo image not yet added */
.site-nav__logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8192C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: #FAF6F0;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.site-nav__logo:hover .site-nav__logo-badge {
  transform: rotate(-6deg);
}

.site-nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-nav__logo-name {
  font-family: 'Italianno', cursive;
  font-weight: 400;
  font-size: 2rem;
  color: #E8192C;
  line-height: 1;
}

.site-nav__logo-studio {
  font-family: 'Nunito', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #009E97;
  margin-top: 0.1rem;
}

.site-nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.site-nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8192C;
  transition: color 0.2s ease;
}

.site-nav__links a:hover {
  color: #c41020;
}

.site-nav__links a.active {
  color: #E8192C;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #3C3C3C;
  margin: 5px 0;
  transition: 0.3s;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 9rem 0 6rem;
  text-align: center;
  background-color: #FAF6F0;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -2rem;
}

.page-header__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #E8192C;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

/* --- Hero (Home) --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(232,25,44,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(250,246,240,0.2) 0%, transparent 50%),
    linear-gradient(to bottom, #002E2B 0%, #006962 35%, #009E97 68%, #81D8D0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  padding-bottom: 8rem;
}

/* Grain texture overlay on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #FAF6F0;
}

.hero__eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.75);
  margin-bottom: 1.2rem;
  display: block;
}

.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 400;
  color: #F2A541;
  margin-bottom: 1.25rem;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  letter-spacing: -0.01em;
}

.hero__subline {
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAF6F0;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 6px rgba(60,60,60,0.15);
}

/* --- Welcome Section --- */
.welcome {
  text-align: center;
  position: relative;
  margin-top: -4rem;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/* Grain texture on teal backgrounds */
.bg-teal {
  position: relative;
}
.bg-teal::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}
.bg-teal > * { position: relative; z-index: 1; }

.welcome p {
  font-size: 1.15rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Three Doors (replaces tiles) --- */
.three-doors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.door {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(60,60,60,0.16);
}

.door:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(60,60,60,0.22);
}

.door--teal  { background: linear-gradient(145deg, #006962, #009E97); }
.door--red   { background: linear-gradient(145deg, #c41020, #E8192C); }
.door--amber { background: linear-gradient(145deg, #D4892A, #F2A541); }

.door__icon {
  font-size: 2.8rem;
  display: block;
}

.door__label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.door--amber .door__label { color: rgba(255,255,255,0.75); }

.door h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #FAF6F0;
  margin: 0;
}

.door p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0;
}

.door .btn-door {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FAF6F0;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 0.6rem 1.6rem;
  border-radius: 2px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.door .btn-door:hover {
  background: rgba(255,255,255,0.15);
  border-color: #FAF6F0;
}

@media (max-width: 700px) {
  .three-doors { grid-template-columns: 1fr; }
}

/* --- Author Taste Section --- */
.author-taste {
  text-align: center;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.author-taste__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #FAF6F0;
  line-height: 1.45;
  position: relative;
}

.author-taste__quote::before {
  content: '\201C';
  font-size: clamp(6rem, 12vw, 12rem);
  font-family: 'Cormorant Garamond', serif;
  color: rgba(250,246,240,0.15);
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  line-height: 1;
  pointer-events: none;
}

/* --- About Synopsis --- */
.about-synopsis {
  padding: 5rem 0;
}

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

.about-synopsis__photo {
  position: relative;
}

.about-synopsis__img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(60,60,60,0.14);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-synopsis__text h2 {
  margin-bottom: 0.5rem;
}

.about-synopsis__text p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #3C3C3C;
}

.about-synopsis__text .divider {
  margin: 1rem 0 1.5rem;
}

@media (max-width: 768px) {
  .about-synopsis__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-synopsis__img {
    aspect-ratio: 4 / 3;
    max-height: 320px;
    width: 100%;
  }
}

/* --- Email Signup --- */
.email-signup {
  text-align: center;
}

.email-signup h2 {
  margin-bottom: 0.75rem;
  color: #FAF6F0;
}

.email-signup .subline {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #FAF6F0;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 1rem;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #3C3C3C;
  border-right: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  background: #FFFFFF;
}

.email-form input[type="email"]::placeholder {
  color: #aaa;
}

.email-form button {
  padding: 0.75rem 1.5rem;
  background-color: #009E97;
  color: #3C3C3C;
  border: 2px solid #009E97;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.email-form button:hover {
  background-color: #3C3C3C;
  border-color: #3C3C3C;
  color: #FAF6F0;
}

.email-signup .promise {
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.03em;
}

/* --- Footer --- */
.site-footer {
  background: #FFFFFF;
  border-top: 2px solid #E8E0D8;
  padding: 3.5rem 0 2rem;
  color: #3C3C3C;
}

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

.footer-brand .site-nav__logo-name {
  font-size: 1.6rem;
  color: #3C3C3C;
  display: block;
  margin-bottom: 0.15rem;
}

.footer-brand .site-nav__logo-studio {
  font-size: 0.68rem;
  color: #009E97;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-social a {
  color: #555;
  font-size: 0.8rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-social a:hover { color: #E8192C; }

.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #009E97;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #666;
  font-size: 0.9rem;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #E8192C; }

.footer-bottom {
  border-top: 1px solid #E8E0D8;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: #AAA;
  font-size: 0.75rem;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.05em;
  margin: 0;
}

.footer-bottom a {
  color: #AAA;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: #FAF6F0; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Chat Page --- */
.chat-body {
  padding: 5rem 0;
  background: #FFFFFF;
}

.chat-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.chat-info h2 {
  color: #009E97;
  margin-bottom: 1rem;
}

.chat-info p {
  font-size: 1rem;
  line-height: 1.75;
  color: #3C3C3C;
  margin-bottom: 1rem;
}

.chat-ways {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-way {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.chat-way__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.chat-way__icon--teal  { background: rgba(0,158,151,0.15); }
.chat-way__icon--amber { background: rgba(218,144,50,0.18); }
.chat-way__icon--red   { background: rgba(232,25,44,0.12); }

.chat-way h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 0.15rem;
}

.chat-way p {
  font-size: 0.88rem;
  color: #777;
  margin: 0;
}

.contact-form h3 {
  color: #009E97;
  margin-bottom: 0.4rem;
}

.form-note {
  font-size: 0.82rem;
  color: #999;
  margin-top: 1rem;
  text-align: center;
}

.quote-block {
  padding: 5rem 2rem;
  text-align: center;
}

.quote-block--teal { background: #009E97; }
.quote-block--red  { background: #E8192C; }

.quote-block__inner {
  max-width: 750px;
  margin: 0 auto;
}

.quote-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.quote-block__attr {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .chat-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* --- My Story Page --- */
.story-photo {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

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

.story-body p {
  font-size: 1.05rem;
}

.story-facts {
  padding: 3rem 0;
}

.story-facts ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.story-facts ul li {
  padding: 1rem 1.25rem;
  background-color: #FFFFFF;
  border-left: 3px solid #E8192C;
  font-size: 0.95rem;
}

.sh-studios-note {
  padding: 3rem 2.5rem;
  border: 1px solid #e8e0d8;
  border-left: 5px solid #009E97;
  margin: 2rem 0;
  background-color: #FFFFFF;
  box-shadow: 4px 4px 0px #009E97;
}

.sh-studios-note h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* --- Collection Page --- */
.collection-section {
  padding: 3rem 0;
  border-bottom: 1px solid #e8e0d8;
}

.collection-section:last-of-type {
  border-bottom: none;
}

.collection-section__header {
  margin-bottom: 2.5rem;
}

.collection-section__label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FAF6F0;
  background-color: #E8192C;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

.book-card {
  display: flex;
  flex-direction: column;
  border-top: 4px solid #009E97;
  padding-top: 1rem;
  transition: transform 0.25s ease;
}

.book-card:hover {
  transform: translateY(-4px);
}

.book-card__cover {
  aspect-ratio: 2 / 3;
  background-color: #e8e0d8;
  margin-bottom: 1rem;
  overflow: hidden;
}

.book-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-card__genre {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #009E97;
  margin-bottom: 0.3rem;
}

.book-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.book-card__desc {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 1rem;
  flex: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.product-card__img {
  aspect-ratio: 1;
  background-color: #e8e0d8;
  margin-bottom: 1rem;
  overflow: hidden;
}

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

.product-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.product-card__desc {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 0.75rem;
}

/* --- Free Gifts Page --- */
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.5rem;
}

.gift-card {
  border: 1px solid #e8e0d8;
  border-top: 4px solid #009E97;
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.2s ease, border-top-color 0.2s ease;
  background-color: #FFFFFF;
}

.gift-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  border-top-color: #E8192C;
}

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

.gift-card h3 {
  margin-bottom: 0.75rem;
}

.gift-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* --- Let's Talk Page --- */
.contact-form {
  max-width: 580px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d0c8c0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #3C3C3C;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #009E97;
}

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

.form-submit {
  margin-top: 0.5rem;
}

.contact-response {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-top: 1rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #009E97;
  border-bottom: 1px solid rgba(0,158,151,0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  color: #3C3C3C;
  border-color: #3C3C3C;
}

/* --- Divider (old, kept for compatibility) --- */
.divider-line {
  width: 50px;
  height: 2px;
  background-color: #009E97;
  margin: 1.5rem auto;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .site-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid #e8e0d8;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  }

  .site-nav__links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .tiles {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input[type="email"] {
    border-right: 2px solid #3C3C3C;
    border-bottom: none;
  }

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .books-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}
