:root {
  --bg: #f4efe6;
  --bg-2: #e6ebf4;
  --card: #ffffff;
  --primary: #2c3f80; /* lapis lazuli inspired by Isis */
  --primary-rgb: 44, 63, 128;
  --primary-soft: rgba(var(--primary-rgb), 0.12);
  --accent: #cfa45e; /* warm gold accent */
  --accent-rgb: 207, 164, 94;
  --accent-soft: rgba(var(--accent-rgb), 0.16);
  --earth: #d7c6a5;
  --title: #c23b30; /* sienna red for headings */
  --text: #141517;
  --muted: #2f3642;
  --shadow: 0 18px 40px rgba(18, 32, 51, 0.14);
  --radius: 16px;
}

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

body {
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background:
    linear-gradient(180deg, rgba(248, 240, 234, 0.28) 0%, rgba(232, 236, 244, 0.26) 100%),
    linear-gradient(120deg, rgba(183, 52, 43, 0.1), rgba(218, 180, 129, 0.08)),
    url("isis.jpg") center calc(8% - 40px) / cover fixed no-repeat;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

img, video {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.page {
  max-width: 100%;
  margin: 0;
  padding: 0 0 140px;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 32px) 22px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(120deg, rgba(214, 118, 110, 0.86), rgba(214, 118, 110, 0.74));
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  margin-left: 0;
  box-shadow: 0 10px 30px rgba(18, 32, 51, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--text);
}

.brand > div > div:first-child {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
}

header nav {
  font-size: 1.05rem;
}

nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  font-size: 0.95rem;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}

nav a:hover {
  background: var(--primary-soft);
  color: var(--text);
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.75);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.nav-toggle-label span {
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
  display: block;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

nav a:focus-visible,
.button:focus-visible,
.ghost:focus-visible {
  outline: 2px solid rgba(var(--primary-rgb), 0.55);
  outline-offset: 2px;
}

.lang-switch {
  border: 1px solid rgba(194, 59, 48, 0.4);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.pill {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0e1826;
  box-shadow: var(--shadow);
}

main {
  display: flex;
  flex-direction: column;
  gap: 190px;
  padding-top: clamp(250px, 12vw, 180px);
}

section {
  scroll-margin-top: 120px;
}

main > section {
  background: rgba(255, 247, 240, 0.68);
  border-radius: 0;
  padding: clamp(28px, 5vw, 46px) 0;
  box-shadow: 0 18px 40px rgba(16, 19, 23, 0.18);
  border: 1px solid rgba(194, 59, 48, 0.08);
  backdrop-filter: blur(4px);
  width: 100%;
}

.section-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 36px);
}

.hero.section-content {
  max-width: 1200px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 0;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -28px -22px;
  background: rgba(255, 247, 240, 0.28);
  z-index: -1;
  border-radius: calc(var(--radius) + 10px);
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

h1, h2, h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--title);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(36px, 4vw, 48px);
  margin: 10px 0;
}

h2 {
  font-size: clamp(28px, 3vw, 34px);
  margin-bottom: 10px;
}

h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--title), transparent);
  border-radius: 999px;
  opacity: 0.85;
}

h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button, .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.1px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(183, 52, 43, 0.5);
  color: var(--title);
  box-shadow: 0 12px 28px rgba(16, 19, 23, 0.12);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--title);
  color: #fff;
  box-shadow: 0 14px 30px rgba(183, 52, 43, 0.3);
}

.ghost {
  border: 1px solid rgba(var(--primary-rgb), 0.32);
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
}

.ghost:hover {
  background: var(--primary-soft);
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.16), rgba(93, 154, 170, 0.22));
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(var(--accent-rgb), 0.4);
  border-radius: calc(var(--radius) - 6px);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.services .card {
  min-height: 210px;
}

.checklist {
  margin-top: 12px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  line-height: 1.5;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: 0;
  color: var(--title);
  font-size: 18px;
}

.tagline {
  color: var(--muted);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--primary);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: center;
}

.faq {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: grid;
  gap: 18px;
}

.faq-items {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 6px;
}

form {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  display: grid;
  gap: 14px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

input, textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  padding: 12px 12px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus, textarea:focus {
  outline: 2px solid rgba(var(--primary-rgb), 0.32);
  border-color: rgba(var(--primary-rgb), 0.45);
}

footer {
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 18px 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 28px rgba(16, 19, 23, 0.14);
}

.lang-choice {
  max-width: 640px;
  margin: 60px auto;
  text-align: center;
  display: grid;
  gap: 18px;
}

.lang-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.notice {
  background: var(--primary-soft);
  border: 1px solid rgba(var(--primary-rgb), 0.32);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--text);
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}

.notice.alt {
  background: var(--accent-soft);
  border: 1px solid rgba(var(--accent-rgb), 0.34);
}

.notice strong {
  font-weight: 700;
  color: var(--primary);
}

/* Responsive rules live in responsive.css (mobile-first). */
