:root {

  --bg-dark: #1a1a1a;

  --bg-light: #f7f3ee;

  --bg-section: #242424;

  --text-main: #ffffff;

  --text-dark: #222222;

  --accent: #c49a6c;

  --border-soft: #444444;

  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",

    sans-serif;

}

 

*,

*::before,

*::after {

  box-sizing: border-box;

}

 

body {

  margin: 0;

  font-family: var(--font-main);

  background-color: #121212;

  color: var(--text-main);

}

 

/* Header */

 

.site-header {

  position: sticky;

  top: 0;

  z-index: 10;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 1rem 5vw;

  background-color: rgba(18, 18, 18, 0.9);

  backdrop-filter: blur(10px);

  gap: 1rem;

}

 

.logo {

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;

}

 

.nav a {

  margin-left: 1.5rem;

  text-decoration: none;
  color: var(--text-main);

  font-size: 0.9rem;

  letter-spacing: 0.08em;
}
 

.nav a:hover {

  color: var(--accent);

}

.nav-service-areas {
  display: inline-block;
  position: relative;
}

.nav-service-toggle {
  margin-left: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  font: inherit;
}

.nav-service-toggle span {
  display: inline-block;
  margin-left: 0.3rem;
  color: var(--accent);
  transition: transform 180ms ease;
}

.nav-service-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.service-area-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 1.5rem;
  display: grid;
  min-width: 170px;
  padding: 0.45rem;
  border: 1px solid rgba(196, 154, 108, 0.45);
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-area-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-area-menu .nav-link {
  margin: 0;
  padding: 0.65rem 0.75rem;
  white-space: nowrap;
}

.nav-toggle {

  display: none;

  align-items: center;

  gap: 0.55rem;

  border: 1px solid rgba(196, 154, 108, 0.45);

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));

  color: var(--text-main);

  border-radius: 999px;

  padding: 0.65rem 1rem;

  cursor: pointer;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);

}

.nav-toggle:hover {

  border-color: var(--accent);

  transform: translateY(-1px);

}

.nav-toggle-lines {

  width: 18px;

  height: 12px;

  position: relative;

  display: inline-block;

}

.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines {

  background: transparent;

}

.nav-toggle-lines::before,
.nav-toggle-lines::after {

  content: "";

  position: absolute;

  left: 0;

  width: 18px;

  height: 2px;

  border-radius: 999px;

  background: var(--accent);

  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);

}

.nav-toggle-lines::before {

  top: 0;

  box-shadow: 0 5px 0 0 var(--accent), 0 10px 0 0 var(--accent);

}

.nav-toggle-lines::after {

  display: none;

}

.nav-toggle-label {

  font-size: 0.78rem;

  letter-spacing: 0.12em;

  text-transform: uppercase;

}

 

/* Hero */

.area-hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: center;
  padding: 4rem 5vw;
  overflow: hidden;
  isolation: isolate;
  background: #171717;
}

.area-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.area-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.25) 65%, rgba(10, 10, 10, 0.5));
}

.area-hero .hero-content {
  max-width: 760px;
  margin-left: 8vw;
  text-align: left;
}

.area-hero h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.98;
}

.area-hero p {
  max-width: 580px;
  color: #f1e9df;
  font-size: 1.2rem;
}

.area-hero .btn.secondary {
  background: var(--accent);
  border-color: var(--accent);
  color: #000000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.area-hero .btn.secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.area-hero .hero-actions .btn {
  margin-right: 0;
}

.area-content {
  max-width: 960px;
  margin-inline: auto;
}

.area-content h2 {
  max-width: 720px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.area-content p {
  max-width: 720px;
  color: #c9c1b8;
  font-size: 1.08rem;
  line-height: 1.75;
}

.quartz-service-content {
  color: #222222;
}

.quartz-service-content .blog-eyebrow {
  color: #000000;
}

.quartz-service-content h2 {
  color: #222222;
}

.quartz-service-content > p:not(.blog-eyebrow) {
  color: #514a43;
}

.quartz-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.quartz-service-grid div {
  padding: 1.25rem;
  border-top: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.55);
}

.quartz-service-grid h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.quartz-service-grid p {
  margin: 0;
  color: #514a43;
  font-size: 0.95rem;
  line-height: 1.6;
}

.quartz-service-actions {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .quartz-service-grid {
    grid-template-columns: 1fr;
  }
}

.area-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.area-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(2rem);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

.area-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: #f7f3ee;
  color: #222222;
}

.area-callout p {
  color: #514a43;
}

.area-callout .btn.secondary {
  color: #222222;
}

.area-callout .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

 

.hero {

  min-height: 70vh;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 4rem 5vw;

  background: linear-gradient(rgba(18, 18, 18, 0.45), rgba(18, 18, 18, 0.6)), url("media/Hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

.hero-sequence {
  position: relative;
  min-height: max(70svh, 34rem);
  overflow: hidden;
  isolation: isolate;
  background: #101010;
}

.hero-sequence-canvas,
.hero-sequence-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-sequence-canvas {
  z-index: -2;
}

.hero-sequence-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.2) 53%, rgba(10, 10, 10, 0.42) 100%);
}

.hero-sequence-content {
  position: relative;
  z-index: 1;
}

 

.hero-content {

  max-width: 600px;

  margin-inline: auto;

  text-align: center;

}

 

.hero h1 {

  font-family: "Playfair Display", Georgia, serif;

  font-size: 3.2rem;

  font-weight: 700;

  letter-spacing: 0.01em;

  margin-bottom: 1rem;

}

 

.hero p {

  font-size: 1.1rem;

  color: #cccccc;

  margin-bottom: 2rem;

}

 

.hero-actions .btn {

  margin-right: 1rem;
}

.hero-actions {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 1rem;
}

@media (max-width: 768px) {
  .hero-sequence {
    min-height: max(76svh, 32rem);
    padding: 5rem 1.5rem;
  }

  .hero-sequence-shade {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.24) 0%, rgba(10, 10, 10, 0.58) 78%, rgba(10, 10, 10, 0.82) 100%);
  }
}

 

/* Buttons */

 

.btn {

  display: inline-block;

  padding: 0.8rem 1.6rem;

  border-radius: 999px;

  border: 1px solid var(--accent);

  font-size: 0.9rem;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  text-decoration: none;

  cursor: pointer;

}

 

.btn.primary {

  background-color: var(--accent);

  color: #000000;

}

 

.btn.secondary {

  background-color: transparent;

  color: var(--accent);

}

 

.btn:hover {

  opacity: 0.9;

}

.btn-glow {

  position: relative;

  overflow: hidden;

  z-index: 0;

}

.btn-glow::before {

  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  left: -60%;

  width: 45%;

  background: linear-gradient(120deg, transparent, rgba(196, 154, 108, 0.65), transparent);

  filter: blur(6px);

  z-index: -1;

  animation: btn-glow-sweep 3.2s ease-in-out infinite;

}

@keyframes btn-glow-sweep {

  0% {

    left: -60%;

  }

  100% {

    left: 130%;

  }

}

 

/* Sections */

 

.section {

  padding: 4rem 5vw;

}

 

.section-dark {

  background-color: var(--bg-section);

}

 

.section-light {

  background-color: var(--bg-light);

  color: var(--text-dark);

}

#store-embed {
  background-color: #f1eee8;
  color: #1f1f1f;
}

#store-embed .section-header h2 {
  color: #1f1f1f;
}

#store-embed .section-header p {
  color: #4f4a43;
}

#store-embed .store-embed {
  background: #ada399;
  border: 1px solid #000000;
}

 

.section-header {

  max-width: 600px;

  margin-bottom: 2rem;

}

 

.section-header h2 {

  font-size: 2rem;

  margin-bottom: 0.5rem;

  

}

 
.about-content h2 {
  
  font-size: 1.5rem;

  margin-bottom: 0.5rem;

  color: white;

}

.section-header p {

  color: #c9c1b8;

}

 

.section-light .section-header p {

  color: #666666;

}

 

/* Gallery */

 

.filters {

  margin-bottom: 1.5rem;

}

 

.filter-btn {

  padding: 0.5rem 1rem;

  margin-right: 0.5rem;

  border-radius: 999px;

  border: 1px solid var(--border-soft);

  background-color: transparent;

  color: var(--text-main);

  cursor: pointer;

  font-size: 0.8rem;

  text-transform: uppercase;

  letter-spacing: 0.08em;

}

 

.filter-btn.active,

.filter-btn:hover {

  border-color: var(--accent);

  color: var(--accent);

}

 

.gallery-grid {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1.5rem;

}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

 

.gallery-item {

  position: relative;

  overflow: hidden;

  border-radius: 12px;

  border: 1px solid var(--border-soft);

}

 

.gallery-item img {

  width: 100%;

  display: block;

  object-fit: cover;

  height: 220px;

}

 

.gallery-info {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  padding: 0.8rem 1rem;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

}

 

.gallery-info h3 {

  margin: 0;

  font-size: 1rem;

}

 

.gallery-info p {

  margin: 0.2rem 0 0;

  font-size: 0.85rem;

  color: #dddddd;

}

 

/* Store */

 

.store-controls {

  display: flex;

  flex-wrap: wrap;

  gap: 1rem;

  margin-bottom: 2rem;

}

 

.store-controls input,

.store-controls select {

  padding: 0.7rem 1rem;

  border-radius: 999px;

  border: 1px solid var(--border-soft);

  background-color: #1a1a1a;

  color: var(--text-main);

  min-width: 220px;

}

.store-embed {
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1.25rem;
}

.ecwid-embed-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #cfc7bd;
  border: 1px dashed var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.ecwid-embed-placeholder p {
  margin: 0;

}

 

.slab-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 1.5rem;

}

 

.slab-card {

  border-radius: 12px;

  border: 1px solid var(--border-soft);

  overflow: hidden;

  background-color: #1a1a1a;

  display: flex;

  flex-direction: column;

}

 

.slab-card img {

  width: 100%;

  height: 180px;

  object-fit: cover;

}

 

.slab-body {

  padding: 1rem;

}

 

.slab-title {

  font-size: 1rem;

  margin-bottom: 0.3rem;

}

 

.slab-meta {

  font-size: 0.85rem;

  color: #bbbbbb;

  margin-bottom: 0.5rem;

}

 

.slab-meta span {

  display: inline-block;

  margin-right: 0.5rem;

}

 

.slab-price {

  font-weight: 600;

  margin-bottom: 0.5rem;

}

 

.slab-actions {

  padding: 0 1rem 1rem;

}

 

/* About */

 

.about-content {

  max-width: 700px;

  line-height: 1.6;

  color: #cccccc;

}

#gallery .section-header,
#about .section-header {
  margin-inline: auto;
  text-align: center;
}

#gallery .filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#gallery .filter-btn {
  margin-right: 0;
}

#gallery .gallery-info,
#about .about-content {
  text-align: center;
}

#about .about-content {
  margin-inline: auto;
}

 

/* Contact */

 

.contact-grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 1.5rem;

  justify-items: center;

}


.project-highlight {
  text-align: center;
}

.project-highlight .section-header {
  max-width: 780px;
  margin-inline: auto;
}

.project-highlight .section-header p:not(.blog-eyebrow) {
  max-width: 620px;
  margin-inline: auto;
}

.project-highlight-media {
  position: relative;
  width: min(100%, 980px);
  margin: 2.5rem auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #101010;
  border: 1px solid rgba(196, 154, 108, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.project-highlight-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-highlight-actions {
  margin-top: 1.75rem;
}

 

.contact-form {

  width: min(100%, 720px);

  background-color: #ffffff;

  color: #222222;

  padding: 2rem;

  border-radius: 12px;

}

 

.contact-form .form-row {

  margin-bottom: 1rem;

}

 

.contact-form label {

  display: block;

  font-size: 0.85rem;

  margin-bottom: 0.3rem;

}

 

.contact-form input,

.contact-form select,

.contact-form textarea {

  width: 100%;

  padding: 0.6rem 0.8rem;

  border-radius: 6px;

  border: 1px solid #cccccc;

  font-family: var(--font-main);

  font-size: 0.9rem;

}

 

.contact-info {

  width: min(100%, 720px);

  margin-inline: auto;

  padding: 0.5rem 0 0;

  text-align: center;

}

.contact-info h3 {

  margin-bottom: 0.5rem;

}

.contact-carousel {
  width: min(100%, 720px);
}

.carousel-shell {
  border: 1px solid #d8d2c8;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 420ms ease;
}

.carousel-slide {
  min-width: 100%;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: min(52vw, 360px);
  object-fit: cover;
  display: block;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem 0.95rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #d8d2c8;
  border-radius: 999px;
  background: #ffffff;
  color: #2f3339;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.carousel-btn:hover {
  background: #1f2329;
  color: #ffffff;
  border-color: #1f2329;
}

#contact .section-header {
  margin-inline: auto;
  text-align: center;
}

.contact-map {
  margin-top: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
}

 

/* Footer */

 

.site-footer {

  padding: 1.5rem 5vw;

  text-align: center;

  font-size: 0.85rem;

  color: #888888;

  border-top: 1px solid #222222;

}

.footer-logo {
  margin-bottom: 0.6rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(196, 154, 108, 0.45);
  color: var(--accent);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background-color: var(--accent);
  color: #000000;
  border-color: var(--accent);
}

.nav-social-only {
  display: none;
}

.footer-logo img {
  display: block;
  margin-inline: auto;
  width: 140px !important;
  max-width: 45vw;
  max-height: 160px !important;
  height: auto;
}

 

/* Responsive */

 

@media (max-width: 768px) {

  .site-header {

    position: sticky;

    align-items: flex-start;

    flex-wrap: wrap;

  }

  .nav-toggle {

    display: inline-flex;

    margin-left: auto;

  }

  .nav {

    width: 100%;

    display: grid;

    gap: 0.5rem;

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transform: translateY(-0.35rem);

    transition: max-height 220ms ease, opacity 220ms ease, transform 220ms ease;

  }

  .site-header.nav-open .nav {

    max-height: 320px;

    opacity: 1;

    transform: translateY(0);

    padding-top: 0.5rem;

  }

  .nav a {

    margin-left: 0;

    padding: 0.75rem 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.9rem;

  }

  .nav-service-areas {
    display: block;
  }

  .nav-service-toggle {
    width: 100%;
    text-align: left;
  }

  .service-area-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 0 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .service-area-menu.is-open {
    display: grid;
  }

  .service-area-menu .nav-link {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-social-only {
    display: block;
  }

  .hero {

    padding-top: 6rem;

  }

 

  .hero h1 {

    font-size: 2.3rem;

  }

  .area-hero .hero-content {
    margin-inline: auto;
    text-align: center;
  }

  .area-hero {
    min-height: 60vh;
    padding: 4rem 1.25rem 3rem;
  }

  .area-hero p {
    margin-inline: auto;
  }

  .area-callout {
    grid-template-columns: 1fr;
    padding: 1.75rem;
    text-align: center;
    justify-items: center;
  }

  .gallery-grid {

    grid-template-columns: 1fr;

  }

 

  .contact-grid {

    grid-template-columns: 1fr;

  }

  .contact-carousel {
    width: 100%;
  }

  .carousel-slide img {
    height: min(66vw, 260px);
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .carousel-controls {
    display: none;
  }

 

}

.disclaimer-wrapper {
  margin: 0.75rem auto 0;
}

.disclaimer-btn {
  background: none;
  border: none;
  color: #888888;
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 180ms ease;
}

.disclaimer-btn:hover {
  color: var(--accent);
}

.image-disclaimer {
  max-width: 620px;
  margin: 0.5rem auto 0;
  color: #666666;
  font-size: 0.72rem;
  line-height: 1.5;
}

.image-disclaimer[hidden] {
  display: none;
}

#stone-guide .section-header p {
  max-width: 720px;
}

.blog-article {
  max-width: 760px;
}

.blog-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(196, 154, 108, 0.45);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-meta {
  margin: 0.4rem 0 0;
  color: #9a9086;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.lead-paragraph {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e7ddd0;
}

.trend-block {
  position: relative;
  margin: 2rem 0;
  padding: 1.75rem 1.75rem 1.75rem 5rem;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.trend-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.55;
}

.trend-block h3 {
  margin-top: 0;
  color: var(--text-main);
}

.trend-block p:last-child {
  margin-bottom: 0;
}

.blog-article a,
.area-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 154, 108, 0.45);
  transition: border-color 180ms ease, color 180ms ease;
}

.blog-article a:hover,
.area-content a:hover {
  color: #e2b57e;
  border-color: #e2b57e;
}

.blog-note {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: rgba(196, 154, 108, 0.08);
  color: #cfc7bd;
  font-size: 0.9rem;
  font-style: italic;
}

.stone-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
 
.stone-card {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background-color: var(--bg-dark);
  padding: 1.5rem;
}
 
.stone-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 0 0.6rem;
}
 
.stone-card p {
  color: #c9c1b8;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
 
.stone-card ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}
 
.stone-card li {
  color: #bbbbbb;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.35rem;
}
 
.stone-card li:last-child {
  margin-bottom: 0;
}
 
@media (max-width: 768px) {
  .stone-guide-grid {
    grid-template-columns: 1fr;
  }

  .trend-block {
    padding: 3.25rem 1.25rem 1.5rem;
  }

  .trend-number {
    top: 1rem;
    left: 1.25rem;
  }
}

/* Privacy Policy Page */
.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}

.privacy-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.privacy-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-main);
  margin: 0 0 0.5rem;
}

.privacy-hero p {
  color: #9a9086;
  font-size: 0.9rem;
}

.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.privacy-card {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background-color: var(--bg-dark);
  padding: 1.75rem;
}

.privacy-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.privacy-card p, .privacy-card li {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.65;
}

.privacy-card ul {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}

.privacy-card li {
  margin-bottom: 0.5rem;
}

.privacy-card a {
  color: var(--accent);
  text-decoration: underline;
}

.site-footer .privacy-link {
  color: var(--accent);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer .privacy-link:hover {
  text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  max-width: 420px;
  width: calc(100vw - 2.5rem);
  background: #1e1e1e;
  color: #f7f3ee;
  border: 1px solid rgba(196, 154, 108, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 1.25rem;
  font-family: var(--font-main);
  animation: cookieBannerFadeIn 300ms ease-out;
}

@keyframes cookieBannerFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-consent-content p {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #ccc;
}

.cookie-consent-content a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-consent-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 180ms ease;
}

.cookie-consent-btn.accept {
  background-color: var(--accent);
  color: #121212;
}

.cookie-consent-btn.accept:hover {
  background-color: #d8a975;
}

.cookie-consent-btn.decline {
  background: transparent;
  border-color: #555;
  color: #bbb;
}

.cookie-consent-btn.decline:hover {
  border-color: #888;
  color: #fff;
}