/* ==========================================
   1. VARIABLES & RESET
   ========================================== */
:root {
  --ink: #20211d;
  --paper: #ffffff;
  --cream: #ffffff;
  --red: #a50101;
  --yellow: #fff1c5;
  --line: rgba(250, 250, 250, 0.2);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}


/* ==========================================
   2. HEADER & NAVIGATION
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  color: var(--ink);
}

.site-header .nav, 
.site-header nav, 
.site-header ul, 
.nav-links {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5vw;
  font-size: 13px;
  background: transparent !important; 
}

.site-header .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header .logo-sub {
  font-family: 'Great Vibes', 'Cedarville Cursive', 'Brush Script MT', cursive;
  font-size: 26px;
  font-weight: normal;
  text-transform: none;
}

.nav a, 
.text-link, 
a {
  color: inherit;
  text-decoration: none;
}

.nav a:hover, 
.text-link:hover {
  color: var(--red);
}

.nav-cta {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.nav-cta span {
  font-size: 18px;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
}


/* ==========================================
   3. HERO SECTION
   ========================================== */
.section-pad {
  padding: 40px 10vw;
}

.hero {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-image: url('hero.jpeg');
  background-size: cover;
  background-position: center 22%;
  color: #ffffff;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.05);
}

.hero-logo-area, .hero-copy, .hero-bottom {
  position: relative;
  z-index: 1;
}

.hero-logo-area {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.hero-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.hero-logo .logo-sub {
  font-family: 'Great Vibes', 'Cedarville Cursive', 'Brush Script MT', cursive;
  font-size: 65px;
  font-weight: normal;
  text-transform: none;
  margin: 10px 0 0px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.eyebrow, 
.section-label {
  font: 11px var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: -5px 0 5px;
}

.hero h1 {
  font: 600 clamp(40px, 6vw, 85px) / .92 var(--serif);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  letter-spacing: -1px;
  margin: 20px 0 15px;
}

.hero h1 em, 
.display em, 
h2 em {
  font-weight: 500;
  color: #ffffff;
}

.hero-intro {
  font-size: 19px;
  max-width: 500px;
  margin-bottom: 15px;
}

.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 10vw;
  right: 10vw;
  display: flex;
  align-items: center;
  gap: 18px;
  font: 10px var(--mono);
  text-transform: uppercase;
}

.line {
  height: 1px;
  background: #ffffff;
  opacity: 1;
  flex: 1;
}


/* ==========================================
   4. BUTTONS & GENERAL ELEMENTS
   ========================================== */
.button {
  border: 0;
  padding: 20px 20px;
  font: 500 12px var(--mono);
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  display: inline-flex;
  gap: 28px;
  align-items: center;
  margin: 20px 0 20px;
}

.button-dark {
  background: #f0e2b6;
  color: #000000;
}

.button-light {
  background: #000000;
  color: #f0e2b6;
}

.button:hover {
  transform: translateY(-2px);
}

.display {
  font: 500 clamp(40px, 5vw, 72px) / 1 var(--serif);
  margin: 0;
  letter-spacing: -1px;
}

.body-copy {
  max-width: 470px;
}

.body-copy p {
  margin: 0 0 22px;
}

.text-link {
  font: 500 13px var(--mono);
  border-bottom: 1px solid;
  padding-bottom: 5px;
  display: inline-block;
  margin-top: 15px;
}


/* ==========================================
   5. SITE SECTIONS
   ========================================== */
.intro {
  background: var(--paper);
}

.section-label {
  color: var(--red);
  margin-bottom: 30px;
  margin-top: 10px;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.about-band {
  background: #ffffff;
  padding-bottom: 60px !important;
}

.about-grid, 
.why-head, 
.portfolio-head, 
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.about-grid {
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 4vw;
  align-items: start;
}

.about-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 4px;
}

.about-grid h2, 
.why h2, 
.process h2, 
.portfolio h2, 
.services h2, 
.faq h2, 
.enquiry h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.15 !important;
  letter-spacing: -1px;
  margin: 0;
}

.intro-content .display em {
  color: #a50101;
}

.why {
  --why-overlay-opacity: 0;
  position: relative;
  isolation: isolate;
  background-color: #740101;
  background-image: url('choose.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, var(--why-overlay-opacity));
}

.why .section-label {
  color: var(--yellow);
}

.why-head {
  margin-bottom: 75px;
}

.why-head p {
  max-width: 300px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefits article {
  min-height: 250px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 12px;
  color: #000000;
}

.benefits b, 
.steps span, 
.price-number {
  font: 11px var(--mono);
}

.benefits h3 {
  font: 500 21px var(--serif);
  margin: 45px 0 12px;
}

.benefits p {
  font-size: 14px;
}

.process {
  --process-overlay-opacity: 0.3;
  --process-glass-blur: 4px;
  position: relative;
  isolation: isolate;
  background-color: #521a00;
  background-image: url('process.jpeg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, var(--process-overlay-opacity));
  -webkit-backdrop-filter: blur(var(--process-glass-blur));
  backdrop-filter: blur(var(--process-glass-blur));
}

.process .section-label {
  color: #ffffff;
}

.process h2 {
  margin-bottom: 70px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.steps article {
  border-top: 1px solid rgba(245, 240, 232, .4);
  padding-top: 18px;
}

.steps h3 {
  font: 500 20px / 1.1 var(--serif);
  margin: 45px 0 18px;
}

.steps p {
  font-size: 13px;
  color: #ffffff;
}

.portfolio {
  background: #442916;
}

.portfolio .section-label {
  color: #ffffff;
}

.portfolio-head {
  margin-bottom: 55px;
  grid-template-columns: 1.6fr 1fr !important; /* Maak die linkerkolom wyer sodat die teks langer lê */
  gap: 6vw !important;
}

.portfolio-head h2 {
  max-width: 100% !important;
}

.portfolio-head p {
  max-width: auto;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: end;
}

.work-image {
  position: relative;
}

.work img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  display: block;
}

.work-large img {
  height: 285px;
}

.work-image.is-expanded img {
  height: auto;
  object-fit: contain;
}

.expand-work {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .35);
  padding: 11px 0 10px;
  background: #ffffff;
  color: #020202;
  font: 11px var(--mono);
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.expand-work span {
  float: right;
  font-size: 16px;
  line-height: 11px;
}

.expand-work:hover,
.expand-work:focus-visible {
  background: #7c5441;
}

.work h3 {
  font: 500 24px var(--serif);
  margin: 15px 0 0;
   color: #ffffff;
}

.work p {
  font: 11px var(--mono);
  margin: 3px 0;
   color: #ffffff;
}

.testimonials {
  background: var(--paper);
}

.testimonials h2 {
  color: #000000;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 70px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.quote-grid blockquote {
  margin: 0;
  border-top: 2px solid var(--ink);
  padding-top: 22px;
  font: 500 24px / 1.15 var(--serif);
}

cite {
  display: block;
  font: 11px var(--mono);
  margin-top: 35px;
}

.services {
  position: relative;
  isolation: isolate;
  background-color: #521a00;
  background-image: url('process1.jpeg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.services-head {
  margin-bottom: 55px;
}

.services-head p {
  max-width: 330px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, 0);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  color: #000000;
  padding: 20px;
  min-height: 405px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: rgba(255, 255, 255, .78);
  color: #000000;
}

.price-card h3 {
  font: 500 34px var(--serif);
  margin: 38px 0 14px;
}

.price-card p {
  font-size: 14px;
  max-width: 300px;
  min-height: 90px;
}

.price-card strong {
  width: 100%;
  font: 500 20px var(--serif);
  text-align: left;
  margin-top: 25px;
}

.price-card small {
  font: 14px var(--mono);
  margin: 5px 0 22px;
}

.price-card > a {
  font: 11px var(--mono);
  text-transform: uppercase;
  border-top: 1px solid currentColor;
  padding-top: 14px;
}

.pricing-note {
  font: 14px var(--mono);
  margin: 25px 0;
}

.commerce-note {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  transform: translateX(-1vw);
}

.commerce-note b {
  font: 500 22px var(--serif);
  transform: translateX(1vw);
}

.commerce-note span {
  max-width: 480px;
  font-size: 14px;
}

.commerce-note a {
  color: var(--red);
  text-decoration: underline;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6vw;
}

.faq-intro h2 em {
  color: var(--red);
}

.faq-intro img {
  display: block;
  width: 85%;
  height: 260px;
  object-fit: auto;
  margin-top: 15px;
  border-radius: 4px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 18px 0px 20px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
  font: 500 19px var(--serif);
  display: flex;
  justify-content: space-between;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  font-size: 0;
  color: var(--red);
}

summary span::before {
  content: '+';
  font: 22px var(--sans);
}

details[open] summary span::before {
  content: '\2212';
}

details p {
  font-size: 14px;
  max-width: 530px;
  margin: 15px 30px 0 0;
}

.enquiry {
  position: relative;
  isolation: isolate;
  background-color: #ffffff;
  background-image: url('touch.jpeg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12vw;
}

.enquiry::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.enquiry > * {
  position: relative;
  z-index: 1;
}

.enquiry .section-label {
  color: #ffffff;
}

.enquiry h2 {
  margin-bottom: 35px;
}

.enquiry-copy > p {
  font-size: 14px;
}

.enquiry-copy a {
  color: #fffab8;
  text-decoration: underline;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enquiry form {
  padding: 32px;
  background: rgba(255, 255, 255, .4);
  border: 1px solid rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #ffffff;
}

label {
  font: 11px var(--mono);
  text-transform: uppercase;
  color: #ffffff;
}

.enquiry form label {
  color: #ffffff;
}

input, 
select, 
textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  padding: 10px 0;
  font: 16px var(--sans);
  outline: none;
}

select {
  color: #ffffff;
}

option {
  color: #ffffff;
}

textarea {
  height: 42px;
  resize: vertical;
}

.enquiry form input,
.enquiry form select,
.enquiry form textarea {
  border-bottom-color: rgba(255, 255, 255, .6);
  color: #ffffff;
}

.enquiry form input::placeholder,
.enquiry form textarea::placeholder {
  color: #ffffff;
  opacity: 1;
}

.enquiry form option {
  background: #ffffff;
  color: #000000;
}

.enquiry form option:hover {
  background: #d3d3d3;
  color: #000000;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font: 11px / 1.4 var(--mono);
  text-transform: none;
}

.check input {
  width: auto;
  margin: 0;
  accent-color: var(--red);
}

.form-message {
  font: 12px var(--mono);
  color: #ffffff;
  min-height: 0;
  margin: 0;
}

.enquiry form .button {
  margin-bottom: 0;
}

.button-light {
  background: #ffffff;
  color: #000000;
}

footer {
  background: #3a2215;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 5vw;
  font-size: 12px;
}

footer a,
footer p {
  color: #ffffff;
}

footer > div {
  display: flex;
  gap: 20px;
  text-decoration: underline;
}

.reveal {
  animation: rise .8s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}


/* ==========================================
   6. CUSTOM ADDITIONS
   ========================================== */
.intro-3-columns {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1.2fr; 
  gap: 4vw; 
  align-items: center;
}

.intro-col-image img {
  width: 100%;
  height: 350px; 
  object-fit: cover;
  border-radius: 4px; 
}

.intro-col-left {
  max-width: 500px;
  text-align: right !important;
}

.intro-col-right {
  max-width: none !important; 
  padding-left: 0; 
}

.about-grid h2 {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  line-height: 1.05 !important; /* Vaste lynhoogte sodat teks nie afsny nie */
  padding-bottom: 30px !important; 
  color: #000000 !important;
  font-size: 59.55px !important;
  text-align: right !important;
}

.about-grid h2 em {
  color: #a50101 !important;
}


/* ==========================================
   7. MEDIA QUERIES / MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .intro-3-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    padding: 15px 5vw;
    background-color: var(--cream);
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 25px 8vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  
  .nav.open {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .section-pad {
    padding: 85px 7vw;
  }
  
  .hero {
    padding-top: 140px;
    display: block;
    min-height: 850px;
  }
  
  .hero h1 {
    font-size: 58px;
    margin-top: 30px;
  }
  
  .hero-bottom {
    left: 7vw;
    right: 7vw;
  }
  
  .section-label {
    margin-bottom: 45px;
  }
  
  .intro-content, 
  .about-grid, 
  .why-head, 
  .portfolio-head, 
  .services-head, 
  .faq-layout, 
  .enquiry {
    display: block;
  }
  
  .body-copy {
    margin-top: 40px;
  }
  
  .about-grid h2, 
  .why h2, 
  .process h2, 
  .portfolio h2, 
  .services h2, 
  .faq h2, 
  .enquiry h2 {
    font-size: 51px;
  }
  
  .why-head {
    margin-bottom: 50px;
  }
  
  .benefits, 
  .steps, 
  .quote-grid, 
  .pricing, 
  .work-grid {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
  
  .benefits article {
    padding-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, .65);
    margin: 0;
  }
  
  .benefits h3 {
    margin-top: 28px;
  }
  
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  
  .steps article:last-child {
    grid-column: span 2;
  }
  
  .work-large {
    grid-column: span 2;
  }
  
  .work-large img, 
  .work img {
    height: 240px;
  }
  
  .work-large img {
    height: 330px;
  }

  .work-image.is-expanded img,
  .work-large .work-image.is-expanded img {
    height: auto;
  }
  
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing {
    grid-template-columns: 1fr;
  }
  
  .price-card {
    min-height: 360px;
  }
  
  .commerce-note {
    display: block;
    transform: none;
  }

  .commerce-note b {
    transform: none;
  }
  
  .commerce-note span {
    display: block;
    margin-top: 12px;
  }
  
  .faq-layout h2 {
    margin-bottom: 50px;
  }
  
  .enquiry form {
    margin-top: 55px;
  }
  
  footer {
    display: block;
  }
  
  footer p {
    margin: 25px 0;
  }
}

/* Maak die opskrif en die paragraaf in die portfolio-seksie wit */
.portfolio-head h2,
.portfolio-head h2 em,
.portfolio-head p {
  color: #ffffff !important;
}