/* Global Styles */
:root {
  --primary: #4b1360;
  --primary-dark: #3a0f4a;
  --bg: #f7f3f9;
  --text: #222;
  --muted: #777;
  --border-radius: 18px;
}

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

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: #fff;
  line-height: 1.6;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--primary);
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.8rem;
  opacity: 0.85;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-social {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* Hero Slider */
/* ================================
   HERO SLIDER (IMAGE BACKGROUND)
   Design Size: 1344 x 392
================================ */

.hero-slider {
  position: relative;
  width: 100%;
  overflow: visible;
  color: #fff;
}

/* wrapper relative for absolute slides */
.slider-wrapper {
  position: relative;
  height: 392px;
}

/* each slide */
.slide {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1544px;
  height: 392px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  border-radius: 0px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* active slide */
.slide.active {
  opacity: 1;
  z-index: 2;
}

/* dark overlay for text readability */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
  border-radius: 6px;
}

/* text container */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
}

.slide-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.slide-content p {
  max-width: 640px;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
}

/* slider arrows */
.slider-controls {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.slider-controls button {
  pointer-events: auto;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* dots */
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}

.slider-dots button.active {
  background: #fff;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
  .slide {
    max-width: 100%;
    height: 360px;
  }
  .slider-wrapper {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .slide {
    height: 260px;
    border-radius: 0;
    box-shadow: none;
  }
  .slider-wrapper {
    height: 260px;
  }
  .slide-content h1 {
    font-size: 1.4rem;
  }
  .slide-content p {
    font-size: 0.9rem;
  }
}


.slider-controls {
  position: absolute;
  inset-inline: 0;
  bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.slider-controls button {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}

.slider-dots button.active {
  background: #fff;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section.light {
  background: var(--bg);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.lead-text {
  max-width: 720px;
  font-size: 1rem;
  color: #333;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.highlight-box {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 14px 38px rgba(0,0,0,0.06);
  border: 1px solid rgba(75,19,96,0.05);
  font-size: 0.95rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

/* Cards & Grids */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  font-size: 0.92rem;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.02rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: 1.75rem 1.5rem;
}

.quote {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.author {
  font-weight: 600;
}

.meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

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

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

.btn-outline:hover {
  background: rgba(75, 19, 96, 0.06);
}

/* Forms */
.simple-form,
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.simple-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 0.25rem;
}

.simple-form input,
.simple-form textarea,
.newsletter-form input {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 0.55rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
}

.simple-form textarea {
  border-radius: 18px;
  resize: vertical;
}

.simple-form button {
  align-self: flex-start;
}

.form-note,
.note {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: #4b176d;
  color: #eee;
  padding-top: 2.6rem;
  margin-top: 2rem;
}

.site-footer.compact {
  padding-top: 1.5rem;
}

.footer-newsletter h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: #bbb;
}

.newsletter-form {
  flex-direction: row;
  max-width: 360px;
}

.newsletter-form input {
  flex: 1;
  border-radius: 999px 0 0 999px;
  border-right: none;
}

.newsletter-form button {
  border-radius: 0 999px 999px 0;
  border: none;
  padding-inline: 1.1rem;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-col h4 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

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

.footer-col a {
  color: #ccc;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-social a {
  color: #ccc;
  font-size: 0.85rem;
  margin-left: 0.8rem;
}

/* Page Hero */
.page-hero {
  background: var(--bg);
  padding: 2.8rem 0 2.4rem;
  border-bottom: 1px solid #eee;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.94rem;
}

.contact-list li {
  margin-bottom: 0.25rem;
}

/* Shop */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  margin-bottom: 1rem;
}

.shop-card {
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: 1.5rem 1.25rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.shop-card h2 {
  margin: 0.3rem 0 0;
  font-size: 1.05rem;
}

.shop-thumb {
  border-radius: 14px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.placeholder-thumb {
  background: linear-gradient(135deg, rgba(75,19,96,0.12), rgba(75,19,96,0.04));
  color: #555;
}

/* Utilities */
.shop-cta {
  text-align: center;
}

/* Responsive */
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

@media (max-width: 720px) {
  .header-inner {
    gap: 0.8rem;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
  }

  .main-nav.open {
    max-height: 280px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.75rem 1.25rem 1rem;
  }

  .header-social {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-slider {
    padding-top: 3.1rem;
  }

  .slide-content h1 {
    font-size: 1.6rem;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

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

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 999px;
  }

  .shop-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===============================
   SERVICES TIMELINE STRIP
================================ */

.services-strip {
  position: relative;
  height: 460px;
  background-image: url("../images/service.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.services-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.78);
  z-index: 1;
}

.services-strip-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* link */
.service-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  text-decoration: none;
  color: var(--primary);
  min-width: 190px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  transform: translateY(-4px);
}

/* icon */
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-link:hover .service-icon {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(75,19,96,0.25);
}

/* text */
.service-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

/* dashed line */
.service-line {
  flex: 1;
  height: 2px;
  border-top: 2px dashed var(--primary);
  opacity: 0.6;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .services-strip {
    height: auto;
    padding: 2rem 0;
  }

  .services-strip-content {
    flex-direction: column;
    gap: 1.2rem;
  }

  .service-line {
    width: 2px;
    height: 24px;
    border-top: none;
    border-left: 2px dashed var(--primary);
  }
}
/* Center Heading on Services Strip */
.services-strip-heading {
  position: absolute;
  top: 20px;                 /* image ke upar spacing */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;                /* overlay se upar */
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-align: center;
}
.services-heading {
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.services-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary);
  margin: 0;
}
/* ===============================
   WHY US SECTION
================================ */

.why-us {
  background: #f8f5fa; /* cream background like image */
  padding: 4rem 0 3rem;
}

.why-us-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

/* Row */
.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 900px;
}

/* Icon */
.why-us-icon {
  min-width: 56px;
  height: 56px;
  color: var(--primary);
}

.why-us-icon svg {
  width: 56px;
  height: 56px;
}

/* Text */
.why-us-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--primary);
  margin: 0;
}

/* Bottom tagline */
.why-us-tagline {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--primary);
  text-transform: uppercase;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .why-us-item {
    flex-direction: column;
    gap: 1rem;
  }

  .why-us-icon {
    align-self: flex-start;
  }

  .why-us-item p {
    font-size: 0.95rem;
  }

  .why-us-tagline {
    letter-spacing: 0.2em;
  }
}
/* ===============================
   COLLECTIONS SECTION
================================ */

.collections-section {
  position: relative;
  min-height: 420px;
  background-image: url("../images/collection.png"); /* YOUR IMAGE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* light overlay like reference image */
.collections-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250,247,239,0.85);
  z-index: 1;
}

/* content */
.collections-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
}

/* heading */
.collections-title {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

/* paragraph */
.collections-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--primary);
  font-weight: 500;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .collections-section {
    min-height: 360px;
    padding: 3rem 0;
  }

  .collections-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .collections-title {
    font-size: 1.6rem;
  }

  .collections-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
/* ===============================
   TESTIMONIALS SECTION
================================ */

.testimonials-section {
  background: #faf7ef;
  padding: 4rem 0 3rem;
}

.testimonials-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 3.5rem;
}

/* grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  align-items: flex-start;
}

/* card */
.testimonial-card {
  text-align: center;
}

/* ===============================
   IMAGE + ICON (FIXED)
================================ */

/* image wrapper */
.testimonial-image {
  position: relative;
  width: fit-content;
  margin: 0 auto 1.2rem;
  overflow: visible;              /* 🔥 IMPORTANT */
}

/* main image */
.testimonial-image img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* icon container (center on image) */
.testimonial-icon {
  position: absolute;
  top: -55px;                     /* image ke thoda upar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;                     /* image ke upar */
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* icon image */
.testimonial-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

/* quote */
.testimonial-quote {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* author */
.testimonial-author {
  font-size: 0.9rem;
  color: var(--primary);
}

/* tagline */
.testimonial-tagline {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--primary);
  text-transform: uppercase;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials-title {
    font-size: 1.6rem;
  }

  .testimonial-image img {
    max-width: 200px;
  }

  .testimonial-tagline {
    letter-spacing: 0.2em;
  }
}
/* ===============================
   NAV SUBMENU
================================ */

.main-nav li {
  position: relative;
}

/* submenu hidden */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  padding: 0.6rem 0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}

/* submenu links */
.submenu li a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
}

.submenu li a:hover {
  background: rgba(75,19,96,0.08);
  text-decoration: none;
}

/* show submenu on hover */
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* mobile fix (submenu stays inside dropdown) */
@media (max-width: 720px) {
  .submenu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu li a {
    color: #fff;
    padding: 0.35rem 0;
  }
}
.google-form-wrapper iframe {
  border: none;
  border-radius: 18px;
  background: #fff;
}
/* ===============================
   OUR SERVICES
================================ */

.our-services-section {
  background: #faf7ef;
  padding: 4.5rem 0;
}

.our-services-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 4rem;
}

/* rows */
.services-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

/* block */
.service-block {
  text-align: center;
}

/* divider */
.service-divider {
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--primary),
    var(--primary) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.35;
}

/* heading */
.service-heading {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

/* icon */
.service-icon {
  margin-bottom: 0.6rem;
}

.service-icon img {
  width: 356px;
  height: auto;
}

/* note */
.service-note {
  color: #c0392b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* text */
.service-text {
  text-align: left;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* list */
.service-list {
  list-style: disc;
  padding-left: 1.4rem;
  text-align: left;
  color: var(--primary);
}

.service-list li {
  margin-bottom: 0.6rem;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .services-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-divider {
    display: none;
  }

  .service-text,
  .service-list {
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
  }
}

/* ===============================
   COLLECTIONS BLOCK
================================ */

.collections-block {
  background: #faf7ef;
  padding: 1.5rem 0;
}

.collections-heading {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 4rem;
}

/* row */
.collection-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: flex-start;
}

/* divider */
.collection-divider {
  width: 1px;
  background: #333;
  opacity: 0.4;
}

/* item */
.collection-item {
  display: flex;
  gap: 0.1rem;
  align-items: flex-start;
}

/* image (VERTICAL IMAGE) */
.collection-img-box {
  width: 160px;        /* frame width */
  height: 360px;       /* frame height – SAME FOR ALL */
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;   /* IMPORTANT */
  display: block;
}



/* text */
.collection-text p {
  color: var(--primary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.collection-highlight {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .collection-row {
    grid-template-columns: 1fr;
  }

  .collection-divider {
    display: none;
  }

  .collection-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .collection-image img {
    width: 120px;
  }
}
