/* ===== SERVICES ===== */
#services {
  background: var(--cream);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(184,146,63,0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--stone-100), var(--stone-50));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--stone-500);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
#about {
  background: var(--stone-900);
  color: var(--stone-200);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,63,0.04), transparent 70%);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text .overline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--stone-400);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.stat {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}

.stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
}

.stat .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone-400);
  margin-top: 0.25rem;
}

/* ===== PROCESS ===== */
#process {
  background: var(--stone-50);
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--stone-200), var(--gold), var(--stone-200));
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--stone-500);
  font-weight: 300;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--cream);
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial {
  background: white;
  border-radius: 8px;
  padding: 2.5rem;
  border: 1px solid var(--stone-200);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--stone-600);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--stone-800);
  font-size: 0.85rem;
}

.stars {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--stone-900);
  color: var(--cream);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--stone-400);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(184,146,63,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-detail p, .contact-detail a {
  color: var(--stone-300);
  font-weight: 300;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-detail a:hover { color: var(--gold); }

.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-group select option { background: var(--stone-800); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--stone-900);
  border: none;
  border-radius: 6px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ===== SINK OPTIONS ===== */
.sink-showcase {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #f2eee7 0%, #ffffff 100%);
}

.sink-showcase .section-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.sink-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.sink-card {
  background: #fff;
  border: 1px solid rgba(63, 58, 51, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(26, 23, 20, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.sink-card.featured {
  border-color: rgba(184, 146, 63, 0.35);
  box-shadow: 0 18px 45px rgba(184, 146, 63, 0.12);
}

.sink-image-wrap {
  position: relative;
  background: linear-gradient(180deg, #faf8f5 0%, #eee9e1 100%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.sink-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sink-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(26, 23, 20, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sink-body {
  padding: 1.3rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.sink-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--stone-900);
}

.sink-subtitle {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sink-body p {
  color: var(--stone-600);
  font-size: 0.96rem;
}

.sink-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sink-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: var(--stone-100);
  color: var(--stone-700);
  font-size: 0.75rem;
  font-weight: 600;
}

.sink-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
  padding: 0.82rem 1rem;
  border-radius: 6px;
  background: var(--stone-900);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}

.sink-cta:hover {
  transform: translateY(-1px);
  background: var(--gold-dark);
}

.sink-note {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.25rem;
  background: rgba(184, 146, 63, 0.08);
  border: 1px solid rgba(184, 146, 63, 0.18);
  border-radius: 14px;
  color: var(--stone-700);
  font-size: 0.95rem;
}


@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; max-width: 300px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== COUNTERTOP EDGE DETAILS ===== */
.edge-showcase {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(26,23,20,0.97), rgba(45,41,36,0.96)), repeating-conic-gradient(var(--stone-700) 0% 25%, transparent 0% 50%) 0 0 / 70px 70px;
}
.edge-showcase .section-header { max-width: 760px; margin: 0 auto 2.5rem; }
.edge-showcase .section-header h2 { color: var(--cream); }
.edge-showcase .section-header > p:last-child { color: var(--stone-300); }
.edge-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.edge-card { min-width: 0; display: grid; grid-template-columns: 108px minmax(0, 1fr); align-items: center; gap: 1.2rem; padding: 1.35rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; background: rgba(255,255,255,0.045); }
.edge-card-popular { border-color: rgba(184,146,63,0.7); background: rgba(184,146,63,0.1); }
.edge-card-upgrade { border-color: rgba(184,146,63,0.32); }
.edge-card-custom { border-style: dashed; }
.edge-profile { position: relative; width: 108px; height: 76px; overflow: hidden; border-radius: 5px; background: linear-gradient(145deg, #f3f0eb 0%, #d8d1c7 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45), 0 10px 25px rgba(0,0,0,0.2); }
.edge-profile span { position: absolute; right: -1px; top: -1px; width: 35px; height: 78px; background: var(--stone-900); }
.edge-pencil span { border-radius: 15px 0 0 15px / 12px 0 0 12px; }
.edge-eased span { border-radius: 4px 0 0 4px; }
.edge-bevel span { clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 22%); }
.edge-bullnose span { border-radius: 42px 0 0 0 / 32px 0 0 0; }
.edge-ogee span { clip-path: polygon(46% 0,100% 0,100% 100%,0 100%,0 67%,25% 57%,35% 45%,34% 31%,23% 20%); }
.edge-custom { display: grid; place-items: center; border: 1px dashed rgba(184,146,63,0.55); background: rgba(184,146,63,0.08); }
.edge-custom span { position: static; width: auto; height: auto; background: none; color: var(--gold); font-family: 'Playfair Display', serif; font-size: 2.3rem; }
.edge-tier { display: block; margin-bottom: 0.35rem; color: var(--gold); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.edge-card h3 { margin-bottom: 0.35rem; color: var(--cream); font-family: 'Playfair Display', serif; font-size: 1.25rem; line-height: 1.2; }
.edge-card p { color: var(--stone-300); font-size: 0.84rem; line-height: 1.55; }
.edge-note { max-width: 1200px; margin: 1rem auto 0; padding: 0.9rem 1.1rem; border-left: 3px solid var(--gold); background: rgba(255,255,255,0.04); color: var(--stone-300); font-size: 0.83rem; }

@media (max-width: 900px) {
  .edge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .edge-showcase { padding: 4rem 1rem; }
  .edge-grid { grid-template-columns: 1fr; }
  .edge-card { grid-template-columns: 92px minmax(0, 1fr); padding: 1rem; }
  .edge-profile { width: 92px; height: 68px; }
  .edge-profile span { height: 70px; }
}
