{
    margin: 0;
    padding:0;
    box-sizing: border-box;
 }

/* colours */
:root {
    --emerald: #095040;
    --emerald-dark: #0a5c4a;
    --emerald-light: #e8f7f2;
    --white:#ffffff;
    --off-white:#c8ecd3;
    --text:#092414;
    --muted:#6b7280;
    --border:#dfe7e4;
}

.head {
    margin-bottom: 0%;
}

section.navigation{
    padding: 14px;
}

section.mainlogo{
    width: 270px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    margin-bottom: -85px;
    margin-top: -40px;
}


/* General container */
.container {
width: min(92%, 1180px);
margin: 0 auto;
}

/* Showcase section */
.showcase-section {
padding: 110px 0 90px;
background: #ffffff;
}

.showcase-intro {
text-align: center;
max-width: 760px;
margin: 0 auto 50px;
}

.section-label {
font-size: 0.78rem;
letter-spacing: 2.4px;
text-transform: uppercase;
color: var(--emerald);
font-weight: 700;
margin-bottom: 14px;
}

.showcase-intro h2 {
font-size: clamp(2rem, 4vw, 3.2rem);
line-height: 1.1;
color: var(--text);
margin-bottom: 16px;
letter-spacing: -0.03em;
}

.section-text {
font-size: 1.04rem;
color: var(--muted);
line-height: 1.7;
}

/* Better photo grid */
.showcase-grid {
display: grid;
grid-template-columns: 1.15fr 1.15fr;
gap: 24px;
align-items: start;
}

.showcase-text {
    padding:20px;
    align-self: start;
}


/* Card styling */
.showcase-item {
position: relative;
overflow: hidden;
border-radius: 24px;
background: #fff;
box-shadow: var(--shadow-soft);
border: 1px solid rgba(229, 236, 232, 0.9);
transform: translateY(30px);
opacity: 0;
transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.35s ease;
}

/* THIS is what fixes huge photos */
.showcase-item img {
width: 100%;
height: 250px;
display: block;
object-fit: cover;
transition: transform 0.7s ease;
}

.showcase-tall h4 {
    width:100%;
    height:150px;
}

/* Main tall image */
.showcase-tall img {
height: 540px;
}

/* Wide bottom image */
.showcase-wide {
grid-column: 1 / -1;
}

.showcase-wide img {
height: 330px;
}

/* Hover effect */
.showcase-item:hover {
box-shadow: var(--shadow-hover);
}

.showcase-item:hover img {
transform: scale(1.04);
}

/* Caption */
.showcase-caption {
position: absolute;
left: 18px;
bottom: 18px;
background: rgba(22, 27, 34, 0.68);
color: #fff;
padding: 10px 14px;
border-radius: 999px;
font-size: 0.9rem;
font-weight: 600;
backdrop-filter: blur(8px);
}

/* Reveal class when visible */
.showcase-item.visible {
transform: translateY(0);
opacity: 1;
}

/* Mobile */
@media (max-width: 900px) {
.showcase-section {
padding: 80px 0 70px;
}

.showcase-grid {
grid-template-columns: 1fr;
}

.showcase-tall img,
.showcase-item img,
.showcase-wide img {
height: 280px;
}

.showcase-wide {
grid-column: auto;
}
}

.reveal {
opacity: 0;
transform: translateY(80px);
transition: all 1s ease;
}

.reveal.visible {
opacity: 1;
transform: translateY(0);
}


body {
font-family: Arial, sans-serif;
background: #ffffff;
color: var(--text);
line-height: 1.6;
text-align: center;
-webkit-font-smoothing: antialiased;
}

img {
    width:300px;
}
.logo {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    height: 270px;
    object-fit:contain;
}

.container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

nav {
    margin-top: 10px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
}

nav a:hover{
    color: var(--emerald);
}

.hero {
    background: var(--off-white);
    padding: 80px 0;
    text-align: center;
}

.hero p {
    font-size: 2.5rem;
    color: var(--emerald-dark);
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 25px;
}

.btn {
display: inline-block;
background: var(--emerald);
color: #fff;
padding: 14px 28px;
border-radius: 999px;
text-decoration: none;
font-weight: 700;
transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
box-shadow: 0 10px 24px rgba(15, 123, 99, 0.16);
}

.btn:hover {
background: var(--emerald-dark);
transform: translateY(-2px);
box-shadow: 0 16px 30px rgba(15, 123, 99, 0.22);
}



section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color:var(--emerald-dark);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.card h3 {
    color: var(--emerald);
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
}

/*pricing*/
.pricing {
    background: var(--off-white);
}
.price-list {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.price-row:last-child{
    border-bottom: none;
}

.price-row span:last-child {
    font-weight: bold;
    color: var(--emerald);
}

/*contact*/
.contact { text-align: center;}

.contact p {
    color: var(--muted);
    margin-bottom: 20px;
}


footer{
    background: var(--emerald-dark);
    width: 100%;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    margin-top: 20px;
}


/*mobile*/
@media (max-width: 768px) {
    header h1 {
        font-size: 1.6rem;
    }
    .hero h2 {font-size: 2rem;
    }
    nav a {
        display: inline-block;
        margin: 8px 12px 0 0;
    }
    .price-row {
        flex-direction: column;
        gap: 5px;
    }
}
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(180deg, #ffffff 0%, #f4f4ef 100%);
color: var(--text);
}

.container {
width: min(1100px, 92%);
margin: 0 auto;
text-align: center;
}


nav {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}

nav a {
text-decoration: none;
color: var(--text);
font-size: 1rem;
font-weight: 500;
transition: color 0.25s ease;
}

nav a:hover {
color: var(--accent);
}

.contact-section {
padding: 70px 20px 100px;
}

.contact-wrapper {
width: min(1100px, 92%);
margin: 0 auto;
display: grid;
grid-template-columns: 0.95fr 1.05fr;
gap: 40px;
align-items: start;
}

.contact-intro {
padding: 18px 10px 0 0;
}

.eyebrow {
display: inline-block;
margin-bottom: 14px;
padding: 8px 16px;
border-radius: 999px;
background: #dfe7e3;
color: var(--accent-dark);
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
}

.contact-intro h1 {
font-size: clamp(2rem, 4vw, 3.4rem);
line-height: 1.08;
margin: 0 0 18px;
letter-spacing: -0.03em;
}

.contact-intro p:last-child {
font-size: 1.05rem;
line-height: 1.8;
color: var(--muted);
max-width: 520px;
}

.contact-form {
background: var(--surface);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border: 1px solid rgba(255, 255, 255, 0.65);
box-shadow: var(--shadow);
border-radius: var(--radius);
padding: 30px;
}

.form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group-full {
grid-column: 1 / -1;
}

.contact-form label {
margin-bottom: 8px;
font-size: 0.92rem;
font-weight: 600;
color: var(--text);
}

.contact-form input,
.contact-form textarea {
width: 100%;
box-sizing: border-box;
padding: 15px 16px;
border: 1px solid var(--line);
border-radius: 16px;
background: rgba(255, 255, 255, 0.88);
color: var(--text);
font-size: 0.98rem;
outline: none;
transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: #8b908d;
}

.contact-form input:focus,
.contact-form textarea:focus {
border-color: rgba(51, 95, 89, 0.45);
box-shadow: 0 0 0 4px rgba(51, 95, 89, 0.08);
}

.contact-form textarea {
min-height: 160px;
resize: vertical;
}

.contact-form button {
margin-top: 22px;
border: none;
border-radius: 999px;
padding: 15px 26px;
background: var(--accent);
color: #fff;
font-size: 0.98rem;
font-weight: 700;
cursor: pointer;
transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
box-shadow: 0 14px 30px rgba(51, 95, 89, 0.18);
}

.contact-form button:hover {
background: var(--accent-dark);
transform: translateY(-1px);
}

@media (max-width: 900px) {
.contact-wrapper {
grid-template-columns: 1fr;
gap: 28px;
}

.contact-intro {
padding-right: 0;
}
}

@media (max-width: 640px) {
.form-grid {
grid-template-columns: 1fr;
}

.contact-form {
padding: 22px;
}

nav {
gap: 18px;
}
}