/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* ===== LATOUT WORDPRESS ===== */
.post-10 {display:none}

/* ===== CSS VARIABLES ===== */
:root {
  --silk:        #F3F0EA;
  --sage:        #9BAF9E;
  --brown:       #8C4A2F;
  --rose:        #C8A2A6;
  --dark:        #2F2F2C;
  --silk-deep:   #EAE6DF;
  --text:        #3a3a37;
  --text-light:  #6b6b66;
  --radius:      2px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--silk);
  color: var(--text);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  direction: rtl;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
}

/* ===== DECORATIVE LINE ===== */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rose);
  opacity: 0.6;
}
.ornament span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  display: block;
  flex-shrink: 0;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: 'Heebo', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: block;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--brown);
  color: var(--silk);
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-block;
  padding: 13px 38px;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--silk);
}

/* ===== NAVBAR ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(243,240,234,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155,175,158,0.2);
  transition: var(--transition);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--dark);
  text-decoration: none;
}
.logo em { font-style: italic; color: var(--brown); }
nav a {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-decoration: none;
  margin-right: 32px;
  transition: color 0.3s;
}
nav a:hover { color: var(--brown); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 40% at 30% 40%, var(--silk-deep) 0%, transparent 70%),
    radial-gradient(ellipse 20% 30% at 70% 70%, var(--silk-deep) 0%, transparent 65%),
    var(--silk);
}
.hero-content {
  position: relative;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}
.hero h1 {
  font-size: clamp(52px, 8vw, 90px);
  color: var(--dark);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--brown);
}
.hero-sub {
  font-size: 15px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-light);
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: pulse 2s ease infinite;
}

/* ===== COMPOUND SECTION ===== */
.section {
  padding: 100px 60px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== ABOUT COMPLEX ===== */
.about-complex {
  background: var(--silk-deep);
  border-top: 1px solid rgba(155,175,158,0.2);
  border-bottom: 1px solid rgba(155,175,158,0.2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--dark);
  margin-bottom: 22px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 16px;
}
.features-list {
  list-style: none;
  margin-top: 32px;
}
.features-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(155,175,158,0.25);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}
.features-list li::before {
  content: '◇';
  color: var(--rose);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  border: 1px solid rgba(155,175,158,0.25);
  margin-top: 60px;
}
.stat-item {
  padding: 30px 20px;
  border-left: 1px solid rgba(155,175,158,0.25);
}
.stat-item:last-child { border-left: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-light);
}

/* ===== MEET US CTA ===== */
.meet-section {
  background: var(--dark);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.meet-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,175,158,0.08) 0%, transparent 70%);
}
.meet-section h2 {
  font-size: clamp(38px, 5vw, 66px);
  color: var(--silk);
  margin-bottom: 16px;
}
.meet-section h2 em { color: var(--rose); }
.meet-section p {
  color: rgba(243,240,234,0.55);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 16px;
}
.btn-light {
  display: inline-block;
  padding: 15px 44px;
  border: 1px solid rgba(243,240,234,0.3);
  color: var(--silk);
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
}
.btn-light:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--dark);
}

/* ===== ABOUT + IMAGE ===== */
.about-img-section {
  padding: 100px 60px;
}
.about-img-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img,
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.img-placeholder {
  background: linear-gradient(135deg, var(--silk-deep) 0%, #ddd9d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(155,175,158,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 70%, rgba(200,162,166,0.2) 0%, transparent 65%);
}
.img-placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--text-light);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px; height: 120px;
  border: 1px solid var(--rose);
  z-index: -1;
}
.about-img-content h2 {
  font-size: clamp(34px, 3.5vw, 52px);
  color: var(--dark);
  margin-bottom: 22px;
}
.about-img-content h2 em { color: var(--sage); font-style: italic; }
.about-img-content p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 16px;
}
.signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--rose);
  margin-top: 30px;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--silk-deep);
  padding: 100px 60px;
  border-top: 1px solid rgba(155,175,158,0.2);
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--dark);
  margin-bottom: 12px;
}
.contact-inner > p {
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 16px;
}
.contact-form {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--silk);
  border: 1px solid rgba(155,175,158,0.35);
  color: var(--dark);
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 300;
  border-radius: var(--radius);
  transition: border-color 0.3s;
  outline: none;
  direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107,107,102,0.5);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-submit {
  text-align: center;
  margin-top: 10px;
}
.form-submit .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 16px;
}
.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--silk);
  font-weight: 300;
}
.footer-logo em { color: var(--rose); font-style: italic; }
.footer-copy {
  font-size: 12px;
  color: rgba(243,240,234,0.35);
  letter-spacing: 1px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header { padding: 18px 24px; }
  nav { display: none; }
  .section { padding: 70px 24px; }
  .about-grid,
  .about-img-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-img-grid .about-img-wrap { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .meet-section,
  .about-img-section,
  .contact-section { padding: 70px 24px; }
  footer { padding: 30px 24px; flex-direction: column; text-align: center; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-left: none; border-bottom: 1px solid rgba(155,175,158,0.25); }
}