/* ===== Reset & base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #24261F;
  background: #F4F0E8;
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { background: #3C574A; color: #F4F0E8; }
a { color: #3C574A; text-decoration: none; }
a:hover { color: #A98B5D; }
input, textarea, button, select { font-family: inherit; }
input:focus, textarea:focus, select:focus { outline: none; border-color: #3C574A !important; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 44px); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 3px;
  font-size: 15px;
  letter-spacing: 0.4px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: #3C574A; color: #F4F0E8; }
.btn-primary:hover { background: #3C574A; color: #F4F0E8; opacity: 0.9; }
.btn-secondary { border-color: rgba(60,87,74,0.4); color: #3C574A; background: transparent; }
.btn-accent {
  background: #A98B5D;
  color: #24261F;
  border: none;
  padding: 15px 38px;
  font-weight: 600;
}
.btn-accent:hover { color: #24261F; opacity: 0.9; }

/* ===== Brand mark ===== */
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid #A98B5D;
  transform: rotate(45deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark-inner {
  width: 14px;
  height: 14px;
  background: #3C574A;
  transform: rotate(45deg);
  display: block;
}
.footer-mark { width: 30px; height: 30px; }
.footer-mark .brand-mark-inner { width: 12px; height: 12px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,240,232,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(169,139,93,0.28);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: #24261F; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; letter-spacing: 0.5px; }
.brand-tagline { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: #6b6a5e; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(169,139,93,0.5);
  border-radius: 4px;
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span { width: 18px; height: 1.5px; background: #24261F; display: block; }

.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 32px); }
.desktop-nav a:not(.btn) { font-size: 14px; letter-spacing: 0.3px; color: #3f3e35; }
.phone-link { color: #3C574A !important; font-weight: 600; }

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(169,139,93,0.28);
  background: #F4F0E8;
  padding: 12px clamp(20px, 4vw, 44px) 22px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a:not(.btn) {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(169,139,93,0.15);
  color: #3f3e35;
}
.mobile-cta { margin-top: 12px; text-align: center; }

@media (max-width: 860px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .site-header.menu-open .mobile-menu { display: flex; }
}

/* ===== Hero ===== */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 44px) clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-verse-ar { font-family: 'Amiri', serif; font-size: clamp(30px, 4.5vw, 46px); color: #3C574A; margin-bottom: 8px; line-height: 1.5; }
.hero-verse-en { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; color: #6b6a5e; margin-bottom: 30px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(38px, 6vw, 66px); line-height: 1.05; margin: 0 0 22px; letter-spacing: -0.5px; }
.hero-sub { font-size: clamp(16px, 1.6vw, 18px); color: #4a4940; max-width: 46ch; margin: 0 0 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-image { position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; box-shadow: 0 30px 70px -30px rgba(36,38,31,0.4); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Trust strip ===== */
.trust-strip { border-top: 1px solid rgba(169,139,93,0.28); border-bottom: 1px solid rgba(169,139,93,0.28); background: #ECE6DA; }
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  text-align: center;
}
.trust-item { font-size: 13px; letter-spacing: 0.4px; color: #4a4940; }
.trust-mark { color: #A98B5D; }

/* ===== Section shells ===== */
.section { max-width: 1200px; margin: 0 auto; padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 44px); }
.section-dark { max-width: none; padding: 0; background: #24261F; color: #E9E3D6; }
.section-dark .section-inner { max-width: 1200px; margin: 0 auto; padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 44px); }
.section-tint { max-width: none; padding: 0; background: #ECE6DA; border-top: 1px solid rgba(169,139,93,0.28); border-bottom: 1px solid rgba(169,139,93,0.28); }
.section-tint > .materials-grid { max-width: 1200px; margin: 0 auto; padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 44px); }

.eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #A98B5D; margin-bottom: 14px; }
.section-head h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(30px, 4.5vw, 46px); margin: 0 0 16px; line-height: 1.1; }
.section-head.center { text-align: center; max-width: 620px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head.center h2 { margin-bottom: 16px; }
.section-head.center p { color: #4a4940; font-size: 17px; margin: 0; }
.section-dark .section-head h2 { color: #F4F0E8; margin-bottom: 0; }

.section-head.split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(36px, 4vw, 52px);
}
.section-head.split h2 { margin: 0; }
.section-head-note { color: #4a4940; font-size: 15px; max-width: 38ch; margin: 0; }

/* ===== Craft cards ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 2.5vw, 32px); }
.card { background: #ECE6DA; border: 1px solid rgba(169,139,93,0.22); border-radius: 4px; padding: clamp(28px, 3vw, 40px); }
.card-ar { font-family: 'Amiri', serif; font-size: 34px; color: #3C574A; margin-bottom: 18px; line-height: 1; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 25px; margin: 0 0 12px; }
.card p { color: #4a4940; font-size: 15.5px; margin: 0; }

/* ===== Process ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(24px, 3vw, 44px); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; color: #A98B5D; line-height: 1; margin-bottom: 14px; }
.step h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 23px; margin: 0 0 10px; color: #F4F0E8; }
.step p { color: #b3ab98; font-size: 15px; margin: 0; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.gallery-item { margin: 0; }
.gallery-item img { aspect-ratio: 4/3; border-radius: 4px; width: 100%; height: 100%; object-fit: contain; background: #ECE6DA; border: 1px solid rgba(169,139,93,0.2); }
.gallery-item figcaption { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: #6b6a5e; margin-top: 10px; }

/* ===== Materials ===== */
.materials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(36px, 5vw, 64px); align-items: center; }
.materials-lead { color: #4a4940; font-size: 16.5px; margin: 0 0 28px; }
.materials-list { display: flex; flex-direction: column; gap: 2px; }
.materials-row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-top: 1px solid rgba(169,139,93,0.28); }
.materials-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; }
.materials-note { color: #6b6a5e; font-size: 14.5px; text-align: right; }
.materials-image { aspect-ratio: 1/1; border-radius: 4px; overflow: hidden; box-shadow: 0 30px 70px -34px rgba(36,38,31,0.4); }
.materials-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-image { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; background: #ECE6DA; border: 1px solid rgba(169,139,93,0.2); order: 2; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { order: 1; }
.about-copy h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(30px, 4.5vw, 46px); margin: 0 0 20px; line-height: 1.1; }
.about-copy p { color: #4a4940; font-size: 16.5px; margin: 0 0 18px; }
.inline-ar { font-family: 'Amiri', serif; font-size: 19px; }
.about-verse-ar { font-family: 'Amiri', serif; font-size: 24px; color: #3C574A; border-right: 2px solid #A98B5D; padding-right: 16px; }
.about-verse-en { font-family: 'Cormorant Garamond', serif; font-style: italic; color: #6b6a5e; margin-top: 8px; }

/* ===== Enquire ===== */
.enquire-inner { max-width: 900px; margin: 0 auto; padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 44px); }
.section-head.center .light { color: #F4F0E8; }
.enquire-lead { color: #b3ab98 !important; font-size: 16.5px; max-width: 52ch; margin: 0 auto 22px !important; }
.enquire-phone { display: inline-flex; align-items: center; gap: 9px; color: #A98B5D; font-family: 'Cormorant Garamond', serif; font-size: 26px; }

.thank-you {
  text-align: center;
  background: rgba(169,139,93,0.12);
  border: 1px solid rgba(169,139,93,0.4);
  border-radius: 6px;
  padding: clamp(40px, 6vw, 64px);
}
.thank-you-ar { font-family: 'Amiri', serif; font-size: 30px; color: #A98B5D; margin-bottom: 14px; }
.thank-you h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin: 0 0 10px; color: #F4F0E8; }
.thank-you p { color: #b3ab98; margin: 0; }

.enquire-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.enquire-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; letter-spacing: 0.4px; color: #b3ab98; }
.enquire-form input,
.enquire-form select,
.enquire-form textarea {
  background: rgba(244,240,232,0.06);
  border: 1px solid rgba(169,139,93,0.35);
  border-radius: 4px;
  padding: 13px 14px;
  color: #F4F0E8;
  font-size: 15px;
}
.enquire-form select option { color: #24261F; }
.enquire-form textarea { resize: vertical; }
.full-width { grid-column: 1 / -1; }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 4px; }
.form-note { font-size: 13px; color: #8a8474; }
.form-error { color: #d98c6c; font-size: 14px; margin: 0; }

/* ===== Footer ===== */
.site-footer { background: #1c1e18; color: #b3ab98; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(44px, 5vw, 64px) clamp(20px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: #F4F0E8; }
.footer-desc { font-size: 14px; margin: 0; max-width: 34ch; }
.footer-heading { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #A98B5D; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.footer-links a { color: #b3ab98; }
.footer-bottom { border-top: 1px solid rgba(169,139,93,0.18); }
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: #6f6a5c;
}
.footer-bismillah { font-family: 'Amiri', serif; font-size: 15px; color: #8a8474; }
